Commands › SharePoint Online

Remove-SPOSiteDesign

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

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

Quick start script

# Remove-SPOSiteDesign — 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-SPOSiteDesign
$before | Format-List

# 3. Make the change
Remove-SPOSiteDesign -Identity <SPOSiteDesignPipeBind>

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

Syntax

Remove-SPOSiteDesign [-Identity] <SPOSiteDesignPipeBind> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity SPOSiteDesignPipeBind yes The ID of the site design to remove.

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