Creating PST Files With Exchange 2007
A couple quick commands to export/import mailboxes using the PST format in Exchange 2007. These must be run from the Exchange Tools Console on a 32-bit machine.
1 |
Export-Mailbox –Identity <mailboxUser> -PSTFolderPath <pathToSavePST> |
The following code will export all mailboxes in a selected database.
1 |
<pre>Get-Mailbox -Database 'MDB' | Export-Mailbox -PSTFolderPath D:PSTs |
The following will import a PST.
1 |
Import-Mailbox -Identity <mailboxUser> -PSTFolderPath <PSTFileLocation> |
The following will import all PSTs from a selected folder.
1 |
Get-Mailbox -Database 'MDB' | Import-Mailbox -PSTFolderPath D:PSTs |
Recent Comments