Exchange 2010 Mailbox Export to PST using PowerShell
I recently had a need to export mailboxes to PST. This was done in an environment with Exchange 2010.This can easily be done with the following command in the Exchange Management Shell. New-MailboxExportRequest -Mailbox -FilePath \serverPSTIdentity.pst This is a bit inconvenient if you need to export more than a few mailboxes.I created the script below to accommodate my need and to be able to run it from another workstation.The only requirement is that you have access to the Exchange server and that you have the management tools installed for your version of Exchange. As soon as I can get around…