Commands › Exchange Online

Get-PublicFolderMigrationRequestStatistics

Exchange Online ExchangeOnlineManagement Get-*

View detailed information about serial public folder migration requests (requests created by the New-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

# Get-PublicFolderMigrationRequestStatistics — 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
Get-PublicFolderMigrationRequestStatistics -Identity <PublicFolderMigrationRequestIdParameter> -RequestQueue <DatabaseIdParameter> | Format-List

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

Syntax — 2 parameter sets

Identity

Get-PublicFolderMigrationRequestStatistics [-Identity] <PublicFolderMigrationRequestIdParameter>
 [-Diagnostic]
 [-Diagnostic <String>]
 [-DiagnosticArgument <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-ReportOnly]
 [<CommonParameters>]

MigrationRequestQueue

Get-PublicFolderMigrationRequestStatistics -RequestQueue <DatabaseIdParameter>
 [-RequestGuid <Guid>]
 [-Diagnostic]
 [-DiagnosticArgument <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-ReportOnly]
 [<CommonParameters>]

Parameters (8)

ParameterTypeRequiredWhat it controls
-Identity PublicFolderMigrationRequestIdParameter yes The Identity parameter specifies the migration request that you want to view. You can use the following values:
-RequestQueue DatabaseIdParameter yes This parameter is for debugging purposes only.
-Diagnostic SwitchParameter The Diagnostic switch specifies whether to return extremely detailed information in the results. You don't need to specify a value with this switch.
-DiagnosticArgument String The DiagnosticArgument parameter modifies the results that are returned by using the Diagnostic switch. Typically, you use the Diagnostic switch and the DiagnosticArgument parameter only at the request of Microsoft...
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-IncludeReport SwitchParameter The IncludeReport switch specifies whether to return additional details, which can be used for troubleshooting. You don't need to specify a value with this switch.
-ReportOnly SwitchParameter The ReportOnly switch returns the results as an array of report entries (encoded strings). You don't need to specify a value with this switch.
-RequestGuid Guid The RequestGuid parameter specifies the GUID of a migration request.

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