Export mailbox from Exchange 2010

Start Exchange Management Shell

If you want to export a user mailbox from exchange to a .pst file:
New-MailboxExportRequest -Mailbox daniel.andersson -FilePath \\exchange2010\export\daniel.andersson.pst

To see the status of the export:
Get-MailboxExportRequest -Name MailboxExport | fl

To see completed mailbox export requests:
Get-MailboxExportRequest | where {$_.status -eq “Completed”}

To clear all completed mailbox export request:
Get-MailboxExportRequest | where {$_.status -eq “Completed”} | Remove-MailboxExportRequest


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.