I wanted to note down the poweshell commands I used to import mail from .PST files to Exchange 2010 mailboxes.
The .PST files themselves were generated by Exmerge from mail stored on Exchange 2003 servers. This was then required to be imported into respective Exchange 2010 mailboxes.
Below is ways I used to import all .PST data into its respective mailboxes, a specific OUs mailboxes, or for an individual users mailbox.
Import mail from .PST files for all mailboxes:
Get-Mailbox | Import-Mailbox -PSTFolderPath C:\PSTFiles
Import mail from .PST files for all mailboxes in the Finance OU:
Get-Mailbox -OrganizationalUnit “DOMAIN.LOCAL/FINANCE” | Import-Mailbox -PSTFolderPath C:\PSTFiles
Import mail from a .PST file for an individual mailbox:
Get-Mailbox -Identity "Andy Barnes" | Import-Mailbox -PSTFolderPath C:\PSTFiles
Share this blog post on social media:
TweetAll advice, installation/configuration how to guides, troubleshooting and other information on this website are provided as-is with no warranty or guarantee. Whilst the information provided is correct to the best of my knowledge, I am not reponsible for any issues that may arise using this information, and you do so at your own risk. As always before performing anything; check, double check, test and always ensure you have a backup.