Must Setup Permission before creating pst files
Get-Mailbox -Database ’servername\Private Information Store (xxx_xxx)’ | Add-MailboxPermission -User administrator -AccessRights FullAccess
Export All Mailboxes to pst files.
Get-Mailbox -Database ’servername\Private Information Store (xxx_xxx)’ | Export-Mailbox -PSTFolderPath E:\PSTs
Export Single user to PST file.
Export-Mailbox -Identity john@contoso.com -PSTFolderPath C:\PSTFiles\john.pst -BadItemLimit 9999
IMPORT All PST Files into Exchange.
(must run permission on for user to import, mailboxes in target server must be created before import.)
Get-Mailbox -Database ’servername\Private Information Store (xxx_xxx)’ | Import-Mailbox -PSTFolderPath E:\PSTs
Permanent link to this post (84 words, 0 images, estimated 20 secs reading time)