Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2012-11-16

Use the Get-MailboxExportRequestStatistics cmdlet to view detailed information about export requests.

Syntax

Get-MailboxExportRequestStatistics -Identity <MailboxExportRequestIdParameter> [-DomainController <Fqdn>] [-IncludeReport <SwitchParameter>]
Get-MailboxExportRequestStatistics -RequestQueue <DatabaseIdParameter> [-DomainController <Fqdn>] [-IncludeReport <SwitchParameter>] [-RequestGuid <Guid>]
Get-MailboxExportRequestStatistics -MRSInstance <Fqdn> [-DomainController <Fqdn>] [-RequestGuid <Guid>]

Detailed Description

You can pipeline the Get-MailboxExportRequestStatistics cmdlet from the Get-MailboxExportRequest cmdlet.

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

Parameters

Parameter Required Type Description

Identity

Required

Microsoft.Exchange.Management.RecipientTasks.MailboxExportRequestIdParameter

The Identity parameter specifies the identity of the export request. By default, export requests are named <alias>\MailboxExportX (where X = 0–9). If you specified a name for the export request when it was created by using the New-MailboxExportRequest cmdlet, use the following syntax: <alias>\<name>.

This parameter can't be used in conjunction with the MRSInstance or RequestQueue parameters.

MRSInstance

Required

Microsoft.Exchange.Data.Fqdn

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 are returned for this instance of MRS.

This parameter can't be used in conjunction with the Identity or RequestQueue parameters.

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 about the request, which can be used for troubleshooting.

RequestGuid

Optional

System.Guid

The RequestGuid parameter specifies the unique identifier for the export request. To find the export request GUID, use the Get-MailboxExportRequest 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.

Examples

EXAMPLE 1

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

Copy Code
Get-MailboxExportRequestStatistics -Identity Tony\MailboxExport1

EXAMPLE 2

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

Copy Code
Get-MailboxExportRequestStatistics -Identity Tony\MailboxExport | Export-CSV \\SERVER01\ExportRequest_Reports\Tony_Exportstats.csv

EXAMPLE 3

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

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

EXAMPLE 4

This example returns default statistics for an export request being processed by the instance of MRS running on the server CAS01. This command only returns information for export requests that are currently being processed by an instance of MRS. If the request is already finished, it won't be returned.

Copy Code
Get-MailboxExportRequestStatistics -MRSInstance CAS01.contoso.com 

EXAMPLE 5

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

Copy Code
Get-MailboxExportRequest -Status Failed | Get-MailboxExportRequestStatistics -IncludeReport | Format-List > AllExportReports.txt