Commands › SharePoint Online

Remove-SPOSiteDesignTask

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

Command to remove a scheduled site design script.

Quick start script

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

# 3. Make the change
Remove-SPOSiteDesignTask -Identity <SPOSiteDesignTaskPipeBind>

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

Syntax

Remove-SPOSiteDesignTask [-Identity] <SPOSiteDesignTaskPipeBind> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity SPOSiteDesignTaskPipeBind yes The ID of the site design to apply.

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