Get all sites associated with a SharePoint Online Hub Site

Network

Get all sites associated with a SharePoint Online Hub Site

Connect-PnPOnline -Url https://[tenant]-admin.sharepoint.com

# get the hub site id
$hubSite = Get-PnPTenantSite "https://[tenant].sharepoint.com/sites/intranet"
$hubSiteId = $hubSite.HubSiteId

# get all sites associated to the hub
$sites = Get-PnPTenantSite -Detailed
$sites | select url | % { 
  $s = Get-PnPTenantSite $_.url 
  if($s.hubsiteid -eq $hubSiteId){
    write-host $s.url
  }
}

I couldn’t get the HubSiteId through normal iterating over the $sites collection. So I ended up getting the sites explicitly.

If you found a simpler approach, let me know!

Author

  • Kai

    Hello you! My name is Kai Boschung and I live with my girl Dominique and our dog Nikita close to Bern, Switzerland.I work at Experts Inside and founded together with compadres the IoT consulting firm appery.

No Comments

Sorry, the comment form is closed at this time.