Commands › SharePoint Online
Start-SPOSiteContentMove
Start a job to move a particular user or group of users to be moved across geo locations relative to the one that executes the command
Quick start script
# Start-SPOSiteContentMove — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-SPOService -Url https://$org-admin.sharepoint.com
# 2. Run and inspect
Start-SPOSiteContentMove -DestinationDataLocation <String> -DestinationUrl <String> -SourceSiteUrl <String> | Format-List
# 3. Export for evidence / drift tracking
Start-SPOSiteContentMove | Export-Clixml .\SPOSiteContentMove-$(Get-Date -Format yyyyMMdd).xml
Syntax — 2 parameter sets
UrlAndDestinationDataLocation (Default)
Start-SPOSiteContentMove [-SourceSiteUrl] <String> [-DestinationDataLocation] <String>
[[-PreferredMoveBeginDate] <DateTime>] [[-PreferredMoveEndDate] <DateTime>] [[-Reserved] <String>]
[-ValidationOnly] [-Force] [-SuppressMarketplaceAppCheck] [-SuppressWorkflow2013Check] [-SuppressAllWarnings]
[-SuppressBcsCheck] [<CommonParameters>]
UrlAndDestinationUrl
Start-SPOSiteContentMove [-SourceSiteUrl] <String> [-DestinationUrl] <String>
[[-PreferredMoveBeginDate] <DateTime>] [[-PreferredMoveEndDate] <DateTime>] [[-Reserved] <String>]
[-ValidationOnly] [-Force] [-SuppressMarketplaceAppCheck] [-SuppressWorkflow2013Check] [-SuppressAllWarnings]
[-SuppressBcsCheck] [<CommonParameters>]
Parameters (12)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.