Applies to: Exchange Server 2013

Topic Last Modified: 2013-01-08

Use the Get-MailboxImportRequestStatistics cmdlet to view detailed information about import requests.

For information about the parameter sets in the Syntax section below, see Syntax.

Syntax

Get-MailboxImportRequestStatistics -Identity <MailboxImportRequestIdParameter> [-IncludeReport <SwitchParameter>] <COMMON PARAMETERS>
Get-MailboxImportRequestStatistics -RequestQueue <DatabaseIdParameter> [-IncludeReport <SwitchParameter>] [-RequestGuid <Guid>] <COMMON PARAMETERS>
COMMON PARAMETERS: [-DomainController <Fqdn>]

Examples

EXAMPLE 1

This example returns the default statistics for the second import request for Tony Smith. The type of information returned by default includes name, mailbox, and status.

Copy Code
Get-MailboxImportRequestStatistics -Identity Tony\MailboxImport1

EXAMPLE 2

This example returns the detailed statistics for the second import request for Tony Smith's mailbox and exports the report to a .csv file.

Copy Code
Get-MailboxImportRequestStatistics -Identity Tony\MailboxImport1 | Export-CSV \\SERVER01\ImportRequest_Reports\Tony_Importstats.csv 

EXAMPLE 3

This example returns additional information about the import request for Tony Smith's mailbox by using the IncludeReport parameter and by pipelining the results to the Format-List command.

Copy Code
Get-MailboxImportRequestStatistics -Identity Tony\LegalHold -IncludeReport | Format-List

EXAMPLE 4

This example returns additional information for all the import requests that have a status of Failed by using the IncludeReport parameter, and then saves the information to the text file AllImportReports.txt.

Copy Code
Get-MailboxImportRequest -Status Failed | Get-MailboxImportRequestStatistics -IncludeReport | Format-List > AllImportReports.txt

Detailed Description

You can pipeline the Get-MailboxImportRequestStatistics cmdlet from the Get-MailboxImportRequest cmdlet.

The RequestQueue 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 "Import Export" entry in the Recipients Permissions topic.

Parameters

Parameter Required Type Description

Identity

Required

Microsoft.Exchange.Management.RecipientTasks.MailboxImportRequestIdParameter

The Identity parameter specifies the identity of the import request. By default, import requests are named <alias>\MailboxImportX (where X = 0–9). If you specified a name when you created the import request, use the following syntax: <alias>\<name>.

RequestQueue

Required

Microsoft.Exchange.Configuration.Tasks.DatabaseIdParameter

The RequestQueue parameter specifies the mailbox database on which the mailbox or archive of the request resides. You can use one of the following values:

  • GUID of the database

  • Database name

This parameter can't be used in conjunction 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.

RequestGuid

Optional

System.Guid

The RequestGuid parameter specifies the unique identifier for the import request. To find the import request GUID, use the Get-MailboxImportRequest cmdlet. If you specify the RequestGuid parameter, you must also specify the RequestQueue parameter. You can't use this parameter in conjunction 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.