Commands › Exchange Online

Get-PublicFolderMoveRequestStatistics

Exchange Online ExchangeOnlineManagement Get-*

View detailed information about public folder move requests.

Quick start script

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

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

Syntax — 2 parameter sets

Identity

Get-PublicFolderMoveRequestStatistics [-Identity] <PublicFolderMoveRequestIdParameter>
 [-Diagnostic]
 [-DiagnosticArgument <String>]
 [-DiagnosticInfo <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-IncludeSkippedItems]
 [-ReportOnly]
 [<CommonParameters>]

MigrationRequestQueue

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

Parameters (10)

ParameterTypeRequiredWhat it controls
-Identity PublicFolderMoveRequestIdParameter yes The Identity parameter specifies the identity of the public folder move request. The default public folder move request identity is \\PublicFolderMove.
-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...
-DiagnosticInfo String This parameter is available only in the cloud-based service.
-DomainController Fqdn This parameter is functional only in on-premises Exchange.
-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.
-IncludeSkippedItems SwitchParameter This parameter is available only in the cloud-based service.
-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 the public folder move request for which you want to view the request statistics.

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