PowerShell iterate and get all SharePoint sites and sub sites


Here is a PowerShell script which can be used to iterate entire SharePoint Web Application and generate a report on it.

SharePoint Management Shell
SharePoint Management Shell
Get all sites and subsites within SharePoint Web Application
Get-SPWebApplication http://sharepointsite | 
Get-SPSite -Limit All | Get-SPWeb -Limit All | 
Select Title, URL | 
Export-CSV C:\SharePoint_Sites_Report.csv -NoTypeInformation

The Above code gets only the Site Title and Site URL in the report. You can add more parameters to the script to get more information like Size, Type, etc.

Note - Web Application is only available in SharePoint on-premise versions. SharePoint Online (Mictosoft Office 365) has only site collections.



Have Questions? Post them here!
Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap