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

Get-SPWebApplication http://sharepointsite |
Get-SPSite -Limit All | Get-SPWeb -Limit All |
Select Title, URL |
Export-CSV C:\SharePoint_Sites_Report.csv -NoTypeInformationThe 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!

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