Applies to: Exchange Server 2013
Topic Last Modified: 2013-01-08
Use the Get-MoveRequestStatistics cmdlet to view detailed information about move requests.
For information about the parameter sets in the Syntax section below, see Syntax.
Syntax
Get-MoveRequestStatistics -Identity
<MoveRequestIdParameter> [-IncludeReport
<SwitchParameter>] <COMMON PARAMETERS>
|
Get-MoveRequestStatistics -MoveRequestQueue
<DatabaseIdParameter> [-IncludeReport
<SwitchParameter>] [-MailboxGuid <Guid>] <COMMON
PARAMETERS>
|
COMMON PARAMETERS: [-DomainController
<Fqdn>]
|
Examples
EXAMPLE 1
This example returns the default statistics for Tony Smith's mailbox, which include the status, mailbox size, archive mailbox size, and the percentage complete.
Copy Code | |
---|---|
Get-MoveRequestStatistics -Identity Tony@contoso.com |
EXAMPLE 2
This example returns the detailed statistics for Tony Smith's mailbox by pipelining the results to the Format-List command.
Copy Code | |
---|---|
Get-MoveRequestStatistics -Identity "contoso\tony" | Format-List |
EXAMPLE 3
This example returns additional information about the mailbox move for Tony Smith's mailbox and exports the report to a .csv file.
Copy Code | |
---|---|
Get-MoveRequestStatistics -Identity Tony@contoso.com -IncludeReport | Export-CSV C:\MRStats.csv |
EXAMPLE 4
This example returns default statistics for all mailboxes whose move requests are in progress or haven't been cleared for the database MBXDB02.
Copy Code | |
---|---|
Get-MoveRequestStatistics -MoveRequestQueue "MBXDB02" |
Detailed Description
The MoveRequestQueue parameter syntax set is 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 moves" entry in the Recipients Permissions topic.
Parameters
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 with the MoveRequestQueue or MailboxGuid parameters. |
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:
This parameter can't be used with the Identity or MRSInstance 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, which can be used for troubleshooting. |
MailboxGuid |
Optional |
System.Guid |
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 with the Identity parameter. |
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.