Commands › SharePoint Online

Get-SPOPersonalSitePageCopyProgress

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

This cmdlet enables you to track the progress of a SharePoint page's copy operation.

Quick start script

# Get-SPOPersonalSitePageCopyProgress — 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-SPOPersonalSitePageCopyProgress -DestinationSite <SpoSitePipeBind> -WorkItemId <Guid> | Format-List

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

Syntax

Get-SPOPersonalSitePageCopyProgress -DestinationSite <SpoSitePipeBind> -WorkItemId <Guid> [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-DestinationSite SpoSitePipeBind yes Specifies the URL of the destination SharePoint site to which the SharePoint page has been copied to.
-WorkItemId Guid yes Specifies the GUID of the work item created for the copy job if it is asynchronous.

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