SharePoint List all Sites and Subsites of a webapplication using powershell

There might be one day when you think you need a list of all sites and subsites and sub-subsites of one of your web application. Well you can do this by code or by powershell. I prefer powershell as long as you have access to the server.

Well, the script below needs a webapplication url. For this url it runs through each site collection and fetches of each site collection the subsites and their subsites.

[sourcecode language=”csharp”]

## SharePoint DLL
[void][System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”)

$webApplicationURL = Read-Host “Enter Web application”

$webApp = Get-SPWebApplication $webApplicationURL

if($webApp -ne $null)
{
#Write-Host “Web Application : ” + $webApp.Name
foreach($siteColl in $webApp.Sites)
{
if($siteColl -ne $null)
{
Write-Host -foregroundcolor red “Site Collection: “$siteColl.Url
Get-SPSite $siteColl | Get-SPWeb -Limit All | Select Title, Url
}
else
{
Echo $siteColl “does not exist”
}
}
}
else
{
Write-Host  $webApplicationURL “does not exist, check the WebApplication name”
}

[/sourcecode]

I am sure you might need it some day.

..:: I LIKE SHAREPOINT ::..

The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.

About Karsten Schneider 312 Articles
Consultant for Microsoft 365 Applications with a strong focus in Teams, SharePoint Online, OneDrive for Business as well as PowerPlatform with PowerApps, Flow and PowerBI. I provide Workshops for Governance & Security in Office 365 and Development of Solutions in the area of Collaboration and Teamwork based on Microsoft 365 and Azure Cloud Solutions. In his free time he tries to collect tipps and worthy experience in this blog.

1 Trackback / Pingback

  1. SharePoint List all Sites and Subsites of a webapplication using powershell – ..:: I like SharePoint ::.. | SPOmani

Leave a Reply

Your email address will not be published.


*