Commands › Exchange Online

Get-MailboxRestoreRequestStatistics

Exchange Online ExchangeOnlineManagement Get-*

View detailed information about restore requests.

Quick start script

# Get-MailboxRestoreRequestStatistics — 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-MailboxRestoreRequestStatistics -Identity <MailboxRestoreRequestIdParameter> -MRSInstance <Fqdn> -RequestQueue <DatabaseIdParameter> | Format-List

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

Syntax — 4 parameter sets

IdentityOnPremises

Get-MailboxRestoreRequestStatistics [-Identity] <MailboxRestoreRequestIdParameter>
 [-Diagnostic]
 [-DiagnosticArgument <String>]
 [-DomainController <Fqdn>]
 [-IncludeReport]
 [-ReportOnly]
 [<CommonParameters>]

IdentityCloud

Get-MailboxRestoreRequestStatistics [-Identity] <MailboxRestoreRequestIdParameter>
 [-IncludeReport]
 [-IncludeSkippedItems]
 [-DiagnosticInfo <String>]
 [-ReportOnly]
 [<CommonParameters>]

MigrationMRSInstance

Get-MailboxRestoreRequestStatistics -MRSInstance <Fqdn>
 [-DomainController <Fqdn>]
 [-RequestGuid <Guid>]
 [<CommonParameters>]

MigrationRequestQueue

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

Parameters (11)

ParameterTypeRequiredWhat it controls
-Identity MailboxRestoreRequestIdParameter yes The Identity parameter specifies the identity of the restore request. The Identity parameter consists of the alias of the mailbox to be restored and the name that was specified when the restore request was created....
-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...
-RequestQueue DatabaseIdParameter yes 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.
-RequestGuid Guid This parameter is available only in on-premises Exchange.
-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.
-DomainController Fqdn This parameter is available only in on-premises Exchange.
-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.

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