Rebelz – We have one of Europe’s widest ranges of BJJ & Grappling gear.

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

Leave a Comment

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