Commands › Exchange Online
Suspend-PublicFolderMigrationRequest
Suspend serial public folder migration requests (requests created by the New-PublicFolderMigrationRequest cmdlet). You can suspend active requests before they reach the status CompletionInProgress. You resume suspended requests by using the Resume-PublicFolderMigrationRequest cmdlet. **Note**: Support for serial migration of public folders ended in Exchange 2013 Cumulative Update 8 (CU8), and the cmdlets are no longer available in Exchange Online. Instead, use the corresponding **\*-MigrationBatch** and **\*-PublicFolderMailboxMigration\*** cmdlets.
Quick start script
# Suspend-PublicFolderMigrationRequest — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Run and inspect
Suspend-PublicFolderMigrationRequest -Identity <PublicFolderMigrationRequestIdParameter> | Format-List
# 3. Export for evidence / drift tracking
Suspend-PublicFolderMigrationRequest | Export-Clixml .\PublicFolderMigrationRequest-$(Get-Date -Format yyyyMMdd).xml
Syntax
Suspend-PublicFolderMigrationRequest [-Identity] <PublicFolderMigrationRequestIdParameter>
[-Confirm]
[-DomainController <Fqdn>]
[-SuspendComment <String>]
[-WhatIf]
[<CommonParameters>]
Parameters (5)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.