Get-MoveRequestStatistics
Topic Last Modified: 2011-03-19
Use the Get-MoveRequestStatistics cmdlet to view detailed information about move requests.
Get-MoveRequestStatistics -Identity <MoveRequestIdParameter> [-DomainController <Fqdn>] [-IncludeReport <SwitchParameter>]
Get-MoveRequestStatistics -MoveRequestQueue <DatabaseIdParameter> [-DomainController <Fqdn>] [-IncludeReport <SwitchParameter>] [-MailboxGuid <Nullable>]
Get-MoveRequestStatistics -MailboxGuid <Nullable> -MRSInstance <Fqdn> [-DomainController <Fqdn>]
| Parameter | Required | Type | Description |
|---|---|---|---|
|
Identity |
Required |
Microsoft.Exchange.Management.RecipientTasks.MoveRequestIdParameter |
The Identity parameter specifies the identity of the mailbox or mail user. You can use one of the following values:
This parameter can't be used in conjunction with the MoveRequestQueue, MRSInstance, or MailboxGuid parameters. |
|
MailboxGuid |
Required |
System.Nullable |
The MailboxGuid parameter specifies the GUID of a mailbox for which you want to view the move request statistics. This parameter can't be used in conjunction with the Identity parameter. |
|
MoveRequestQueue |
Required |
Microsoft.Exchange.Configuration.Tasks.DatabaseIdParameter |
The MoveRequestQueue parameter specifies the mailbox database on which the move request resides. You can use one of the following values:
|
|
MRSInstance |
Required |
Microsoft.Exchange.Data.Fqdn |
The MRSInstance parameter specifies the fully qualified domain name (FQDN) of the server on which the Mailbox Replication Service resides. If using this parameter, all move request records are returned for this instance of the Mailbox Replication Service. This parameter can't be used in conjunction with the Identity or MoveRequestQueue parameters. |
|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory. |
|
IncludeReport |
Optional |
System.Management.Automation.SwitchParameter |
The IncludeReport switch specifies whether to return additional details about the move request that can be used for troubleshooting. |
The MoveRequestQueue and MRSInstance parameter syntax sets are for debugging purposes only.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Mailbox move" entry in the Mailbox Permissions topic.
| Error | Description |
|---|---|
|
|
|
This example returns the default statistics for Tony Smith's mailbox, which include the status, mailbox size, archive mailbox size, and the percentage complete.
Get-MoveRequestStatistics -Identity Tony@contoso.com
This example returns the detailed statistics for Tony Smith's mailbox by pipelining the results to the Format-List command.
Get-MoveRequestStatistics -Identity "contoso\tony" | Format-List
This example returns additional information about the mailbox move for Tony Smith's mailbox and exports the report to a CSV file.
Get-MoveRequestStatistics -Identity Tony@contoso.com -IncludeReport | Export-CSV C:\MRStats.csv
This example returns default statistics for all mailboxes whose move requests are in progress or haven't been cleared for the database MBXDB02.
Get-MoveRequestStatistics -MoveRequestQueue "MBXDB02"
This example returns default statistics for a mailbox that has been moved by the instance of the Mailbox Replication Service running on the server CAS01.
Get-MoveRequestStatistics -MRSInstance CAS01.contoso.com -MailboxGuid b6a6795c-a010-4f67-aaaa-da372d56fcb9
