Forum Discussion
An_admin_123
May 17, 2023Copper Contributor
I'd like to find the total number of sites in SharePoint online
All my SPO sites start company.sharepoint.com/, I'm trying to find out the total number of sites and subsites below that. So far I can't find anything which can show me a total number. Can anyone h...
An_admin_123
Dec 14, 2023Copper Contributor
Connect-SPOService -Url https://yourtenant-admin.sharepoint.com
$sites = Get-SPOSite -Limit All
$totalSites = $sites.Count
Write-Host "Total number of sites in the tenant: $totalSites"
Disconnect-SPOService
That gets me "12" which is definitely wrong. It's at least 100. It doesn't seem to be counting the subsites of subsites.