Export Mailbox to PST: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(Created page with "To export the contents of a mailbox to a PST use the command below. The maxium file size is 50 GB. The share you are writing to must allow the group '''Exchange Trusted Subsyst...")
 
No edit summary
 
Line 14: Line 14:
Clear the export request
Clear the export request
<pre>
<pre>
Remove-MailboxExportRequest -Identity "ingrnet.com/Asia Pacific/Australia/Brisbane/Users/Wiggins, Simon R\MailboxExport"
Remove-MailboxExportRequest -Identity "mydomain.local/Brisbane/Users/John Doe\MailboxExport"</pre>
 
Remove all Completed Requests
<pre>
Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest
</pre>
</pre>


[[Category : Exchange PowerShell]]
[[Category : Exchange PowerShell]]

Latest revision as of 01:32, 9 November 2011

To export the contents of a mailbox to a PST use the command below. The maxium file size is 50 GB. The share you are writing to must allow the group Exchange Trusted Subsystem read/write access.

Microsoft New-MailboxExportRequest

New-MailboxExportRequest -Mailbox username -FilePath \\server\share\filename.pst

To verify the status of the move request.

Get-MailboxExportRequest | fl identity, status

Clear the export request

Remove-MailboxExportRequest -Identity "mydomain.local/Brisbane/Users/John Doe\MailboxExport"

Remove all Completed Requests

Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest