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

Topic Last Modified: 2012-07-23

You can suspend a mailbox export request any time after the request is created, but before the request reaches the status of Completed. You can resume the request by using the Resume-MailboxExportRequest cmdlet.

Note:
You can't use the Exchange Management Console (EMC) to suspend 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 suspend 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 suspends the mailbox export request Ayla\MailboxExport.

Copy Code
Suspend-MailboxExportRequest -Identity "Ayla\MailboxExport"

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

Use the Shell to suspend 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 suspends all mailbox export requests in progress by using the Get-MailboxExportRequest cmdlet to retrieve all requests that have a status of InProgress, and then pipelines the output to the Suspend-MailboxExportRequest cmdlet with the suspend comment "Resume after 10 P.M."

Copy Code
Get-MailboxExportRequest -Status InProgress | Suspend-MailboxExportRequest -SuspendComment "Resume after 10 P.M."

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

Other Tasks

After you suspend the mailbox export request, you may also want to resume it. For detailed steps, see Resume a Mailbox Export Request.