Commands › SharePoint Online
Get-SPOSiteGroup
Gets all the groups on the specified site collection.
Quick start script
# Get-SPOSiteGroup — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com
# 2. Run and inspect
Get-SPOSiteGroup -Site <SpoSitePipeBind> | Format-List
# 3. Export for evidence / drift tracking
Get-SPOSiteGroup | Export-Clixml .\SPOSiteGroup-$(Get-Date -Format yyyyMMdd).xml
Syntax
Get-SPOSiteGroup -Site <SpoSitePipeBind> [-Group <String>] [-Limit <Int32>] [<CommonParameters>]
Parameters (3)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.