Commands › SharePoint Online
New-SPOListFileVersionExpirationReportJob
Starts generating file version expiration report for a document library.
Quick start script
# New-SPOListFileVersionExpirationReportJob — 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-SPOListFileVersionExpirationReportJob
$before | Format-List
# 3. Make the change (dry run first)
New-SPOListFileVersionExpirationReportJob -List <SPOListPipeBind> -ReportUrl <String> -Site <SpoSitePipeBind> -WhatIf
New-SPOListFileVersionExpirationReportJob -List <SPOListPipeBind> -ReportUrl <String> -Site <SpoSitePipeBind>
# 4. Verify and diff
$after = Get-SPOListFileVersionExpirationReportJob
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
New-SPOListFileVersionExpirationReportJob [-Site] <SpoSitePipeBind> -List <SPOListPipeBind> -ReportUrl <String>
[-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (5)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.