Commands › SharePoint Online

Remove-SPOListDesign

SharePoint Online Microsoft.Online.SharePoint.PowerShell Remove-*

Removes a list design. It no longer appears in the UI for creating a new list.

Quick start script

# Remove-SPOListDesign — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-SPOListDesign
$before | Format-List

# 3. Make the change
Remove-SPOListDesign -Identity <SPOListDesignPipeBind>

# 4. Verify and diff
$after = Get-SPOListDesign
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Remove-SPOListDesign [-Identity] <SPOListDesignPipeBind> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity SPOListDesignPipeBind yes The ID of the list design to remove.

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