PowerShell iterate and get all SharePoint sites and sub sites

Here is a PowerShell script that can be used to iterate the 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 (Microsoft Office 365) has only site collections.


This is not an AI-generated article but is demonstrated by a human.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!