Commands › SharePoint Online

Get-SPOSiteGroup

SharePoint Online Microsoft.Online.SharePoint.PowerShell Get-*

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)

ParameterTypeRequiredWhat it controls
-Group String Specifies the group name.
-Limit Int32 Specifies the maximum number of groups to return. The default value is 200.
-Site SpoSitePipeBind yes Specifies the site collection scope.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.