Commands › Exchange Online

Get-MoveRequestStatistics

Exchange Online ExchangeOnlineManagement Get-*

View detailed information about move requests. Some of the failure messages that are returned by this cmdlet are temporary and don't indicate that a request has actually failed. If the Status value is Queued or InProgress, then the request is proceeding normally.

Quick start script

# Get-MoveRequestStatistics — 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-MoveRequestStatistics -Identity <MoveRequestIdParameter> -MoveRequestQueue <DatabaseIdParameter> -MRSInstance <Fqdn> | Format-List

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

Syntax — 4 parameter sets

IdentityOnPremises

Get-MoveRequestStatistics [-Identity] <MoveRequestIdParameter>
 [-Diagnostic]
 [-DiagnosticArgument <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-ReportOnly]
 [<CommonParameters>]

IdentityCloud

Get-MoveRequestStatistics [-Identity] <MoveRequestIdParameter>
 [-Analysis]
 [-DiagnosticInfo <String>]
 [-DiagnosticOnly]
 [-IncludeReport]
 [-ProxyToMailbox <MailboxIdParameter>]
 [-ReportOnly]
 [<CommonParameters>]

MigrationMoveRequestQueue

Get-MoveRequestStatistics -MoveRequestQueue <DatabaseIdParameter>
 [-MailboxGuid <Guid>]
 [-Diagnostic]
 [-DiagnosticArgument <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-ReportOnly]
 [<CommonParameters>]

MigrationMRSInstance

Get-MoveRequestStatistics -MRSInstance <Fqdn>
 [-MailboxGuid <Guid>]
 [-DomainController <Fqdn>]
 [<CommonParameters>]

Parameters (13)

ParameterTypeRequiredWhat it controls
-Identity MoveRequestIdParameter yes The Identity parameter specifies the identity of the mailbox or mail user. You can use one of the following values:
-MoveRequestQueue DatabaseIdParameter yes This parameter is available only in on-premises Exchange.
-MRSInstance Fqdn yes The MRSInstance parameter specifies the fully qualified domain name (FQDN) of the Client Access server on which the Microsoft Exchange Mailbox Replication service (MRS) resides. When using this parameter, all records...
-Analysis SwitchParameter This parameter is available only in the cloud-based service.
-Diagnostic SwitchParameter This parameter is available only in on-premises Exchange.
-DiagnosticArgument String This parameter is available only in on-premises Exchange.
-DiagnosticInfo String This parameter is available only in the cloud-based service.
-DiagnosticOnly SwitchParameter This parameter is available only in the cloud-based service.
-DomainController Fqdn This parameter is available 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.
-MailboxGuid Guid This parameter is available only in on-premises Exchange.
-ProxyToMailbox MailboxIdParameter This parameter is available only in the cloud-based service.
-ReportOnly SwitchParameter This parameter is reserved for internal Microsoft use.

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