Can anyone let me know how to retreive the storage space for all the site collections and subsites.
Thanks in advance
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Yogendra BhardwajPosted Apr 13, 2017, 1:17 PM
MOSS 2007
[void][system.reflection.assembly]::loadwithpartialname("Microsoft.SharePoint")
$URL = "http://Moss2007"
$Site = New-Object Microsoft.SharePoint.SPSite($URL)
$Site.RecalculateStorageUsed()
SharePoint 2010
$URL = "http://Sp2010"
$Site = Get-SPSite -identity $URL
$Site.RecalculateStorageUsed()