Friday, February 13, 2015

How to Get Site Collection Size using Powershell

Get Site Collection Size

Get-SPSite –Limit All | select url, @{label="Size in MB";Expression={$_.usage.storage/1MB}} | Sort-Object -Descending -Property "Size in MB" | Format-Table –AutoSize >c:\SiteColSize.txt


No comments:

Post a Comment