Commands › SharePoint Online

Get-SPOSiteManageVersionPolicyJobProgress

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

Gets the status and progress for a background job started by `New-SPOSiteManageVersionPolicyJob`. > [!NOTE] > This feature is currently in preview and may not be available in your tenant.

Quick start script

# Get-SPOSiteManageVersionPolicyJobProgress — 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-SPOSiteManageVersionPolicyJobProgress -Identity <SpoSitePipeBind> | Format-List

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

Syntax

Get-SPOSiteManageVersionPolicyJobProgress [-Identity] <SpoSitePipeBind> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-Identity SpoSitePipeBind yes Specifies the URL of the site collection.

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