Commands › SharePoint Online

Get-SPOSiteDesignRights

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

Displays a list of principals and their rights for usage of the site design. This can be used to determine the scope that your site design has with users on the tenant.

Quick start script

# Get-SPOSiteDesignRights — 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-SPOSiteDesignRights -Identity <SPOSiteDesignPipeBind> | Format-List

# 3. Export for evidence / drift tracking
Get-SPOSiteDesignRights | Export-Clixml .\SPOSiteDesignRights-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-SPOSiteDesignRights [-Identity] <SPOSiteDesignPipeBind> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity SPOSiteDesignPipeBind yes The ID of the site design to get scoping information.

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