Commands › SharePoint Online
Remove-SPOMigrationJob
Cmdlet to remove a previously created migration job from the specified site collection.
Quick start script
# Remove-SPOMigrationJob — 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-SPOMigrationJob
$before | Format-List
# 3. Make the change
Remove-SPOMigrationJob -Credentials <CredentialCmdletPipeBind> -JobId <Guid> -TargetWebUrl <String>
# 4. Verify and diff
$after = Get-SPOMigrationJob
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
Remove-SPOMigrationJob [-TargetWebUrl] <String> [-JobId] <Guid> -Credentials <CredentialCmdletPipeBind>
[-NoLogFile] [<CommonParameters>]
Parameters (4)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.