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

Topic Last Modified: 2012-07-23

You can resume a mailbox export request that has a status of Suspended or Failed.

Note:
You can't use the Exchange Management Console (EMC) to resume an export request. You must use the Shell.

Looking for other management tasks related to mailbox import or export requests? Check out Managing Mailbox Import and Export Requests.

Use the Shell to resume a mailbox export request

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Import Export" entry in the Mailbox Permissions topic.

This example resumes the mailbox export request Kweku\Export.

Copy Code
Resume-MailboxExportRequest -Identity Kweku\Export

For detailed syntax and parameter information, see Resume-MailboxExportRequest.

Use the Shell to resume multiple mailbox export requests

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Import Export" entry in the Mailbox Permissions topic.

This example resumes all mailbox export requests that have a status of Failed.

Copy Code
Get-MailboxExportRequest -Status Failed | Resume-MailboxExportRequest

For detailed syntax and parameter information, see Get-MailboxExportRequest and Resume-MailboxExportRequest.