Commands › SharePoint Online
Get-SPOListDesign
Gets details about list designs that are on the SharePoint tenant. You can specify an ID of a specific list design to retrieve. If there are no parameters listed, details about all list designs are listed.
Quick start script
# Get-SPOListDesign — 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-SPOListDesign | Format-List
# 3. Export for evidence / drift tracking
Get-SPOListDesign | Export-Clixml .\SPOListDesign-$(Get-Date -Format yyyyMMdd).xml
Syntax
Get-SPOListDesign [[-Identity] <SPOListDesignPipeBind>] [<CommonParameters>]
Parameters (1)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.