Get-MigrationUserStatistics
Applies to: Exchange Server 2013, Exchange Online
Topic Last Modified: 2013-03-26
Use the Get-MigrationUserStatistics cmdlet to view detailed information about the migration requested for a specific user.
For information about the parameter sets in the Syntax section below, see Syntax.
Get-MigrationUserStatistics -Identity <MigrationUserIdParameter> [-Diagnostic <SwitchParameter>] [-DiagnosticArgument <String>] [-DomainController <Fqdn>] [-IncludeReport <SwitchParameter>] [-LimitSkippedItemsTo <Int32>] [-Organization <OrganizationIdParameter>]
This example uses the IncludeReport parameter to display detailed information about the migration status for the user.
Get-MigrationUserStatistics -Identity davidp@corp.contoso.com -IncludeReport | FL Status,Error,Report
This example displays the number of mailbox items that failed to migrate, which are called skipped items, and information about each skipped item.
Get-MigrationUserStatistics -Identity davidp@corp.contoso.com | FL SkippedItemCount,SkippedItems
This example displays results information in the SkippedItems property for a maximum of 20 skipped items.
Get-MigrationUserStatistics -Identity davidp@corp.contoso.com -LimitSkippedItemsTo 20 | FL SkippedItemCount,SkippedItems
This example displays detailed information about users in the migration batch named StagedBatch1.
Get-MigrationUser -BatchId StagedBatch1 | Get-MigrationUserStatistics
This example displays detailed information about users from all current migration batches.
Get-MigrationUser | Get-MigrationUserStatistics
This example uses the Diagnostic parameter to display detailed troubleshooting information about the migration for the user.
Get-MigrationUserStatistics -Identity davidp@corp.contoso.com -Diagnostic | FL Status,Error,DiagnosticInfo
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 and migration permissions" section in the Recipients Permissions topic.
| Parameter | Required | Type | Description |
|---|---|---|---|
| Identity | Required | Microsoft.Exchange.Management.Migration.MigrationUserIdParameter | The Identity parameter specifies the user that you want to retrieve information about. Use an email address as the value for the Identity parameter. |
| Diagnostic | Optional | System.Management.Automation.SwitchParameter | The Diagnostic switch specifies whether to retrieve extremely detailed information about the user migration. The information provided is too much for a typical person to comprehend. Microsoft Support can use this information to troubleshoot user migration problems. You typically use this parameter at the request of support personnel. |
| DiagnosticArgument | Optional | System.String | This parameter is reserved for internal Microsoft use. |
| 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. |
| LimitSkippedItemsTo | Optional | System.Int32 | The LimitSkippedItemsTo parameter specifies the maximum number of skipped items to display information about in the SkippedItems property in command output. For example, if this parameter is set to |
| Organization | Optional | Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter | This parameter is reserved for internal Microsoft use. |
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.
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.
