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

Topic Last Modified: 2012-07-23

Completed mailbox export requests aren't cleared automatically. You can remove fully or partially completed mailbox export requests by using the Remove-MailboxExportRequest cmdlet.

Note:
If you remove a partially completed mailbox export request, content already exported isn't removed from the .pst file. If you want to start a new mailbox export request to the same file and start with an empty .pst file, you must rename or delete the previous .pst file.
Note:
You can't use the Exchange Management Console (EMC) to remove 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 remove 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 removes the mailbox export request Ayla\MailboxExport.

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

This example cancels a mailbox export request by using the RequestGuid parameter for a mailbox or archive on MBXDB01.

Note:
You should use the RequestGuid parameter only for debugging or troubleshooting purposes.
Copy Code
Remove-MailboxExportRequest -RequestQueue MBXDB01 -RequestGuid 25e0eaf2-6cc2-4353-b83e-5cb7b72d441f

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

Use the Shell to remove 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 removes all mailbox export requests that have a status of Completed.

Copy Code
Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest

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