Friday, 6 July 2018

SharePoint 2013: Get Usage of each site at webapplication level


Get-SPWebApplication <Web App name> | Get-SPSite -limit all| Select Url, @{label="Size in MB";Expression={$_.usage.storage/1MB}}| Out-File -FilePath "C:\Output.txt"

No comments:

Post a Comment