Commands › SharePoint Online

Get-SPOCrossGeoMoveReport

SharePoint Online Microsoft.Online.SharePoint.PowerShell Get-*

Provides a report of objects moved between geo locations.

Quick start script

# Get-SPOCrossGeoMoveReport — 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
Get-SPOCrossGeoMoveReport -MoveJobType <JobType> | Format-List

# 3. Export for evidence / drift tracking
Get-SPOCrossGeoMoveReport | Export-Clixml .\SPOCrossGeoMoveReport-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-SPOCrossGeoMoveReport [-Limit <UInt32>] [-MoveStartTime <DateTime>] [-MoveEndTime <DateTime>]
 -MoveJobType <JobType> [-MoveState <MoveState>] [-MoveDirection <MoveDirection>] [<CommonParameters>]

Parameters (6)

ParameterTypeRequiredWhat it controls
-Limit UInt32 Limit the number of items to return for the report.
-MoveDirection MoveDirection The direction of the move to limit the report to. Valid values are:
-MoveEndTime DateTime The end time to limit the move report to.
-MoveJobType JobType yes The type of job to limit the report to. Valid values are:
-MoveStartTime DateTime The start time to limit the move report to.
-MoveState MoveState The type of state to limit the report to. Valid values are:

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