Commands › SharePoint Online

Remove-SPOMigrationJob

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

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)

ParameterTypeRequiredWhat it controls
-Credentials CredentialCmdletPipeBind yes Optional credentials of a site collection administrator to use to connect to the site collection. The credentials should supply the username in UPN format (e.g. user@company.onmicrosoft.com). If this property is not...
-JobId Guid yes Id of a previously created migration job that exists on the target site collection.
-NoLogFile SwitchParameter Indicates to not create a log file. The default is to create a new DeleteMigrationJob log file within the current directory.
-TargetWebUrl String yes The fully qualified URL of the site collection where the job will be deleted if found.

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