Exchange 2010: Merge a mailbox between two users

exchangemailbox

I have two users in my Exchange 2010 server where one user no longer is employed but we need access to the mails. I cannot find any function to reset the users password so my question is if it is possible to merge the users mailbox into another users?

Sincerely

Mestika

Best Answer

I don't know what you are doing with an Exchange server but you don't know how to reset a password in AD...

http://technet.microsoft.com/en-us/library/cc782255(WS.10).

As for merging the mailbox, use the Export-Mailbox and Import-Mailbox cmdlets.

Export Mailbox cmdlet example

New-MailboxExportRequest -Mailbox AylaKol -FilePath \\MBX-01\PSTFileShare\Ayla_Recovered.pst

Import Mailbox cmdlet example

New-MailboxImportRequest -Mailbox Ayla -FilePath \\SERVER01\PSTFiles\Recovered.pst -TargetRootFolder "RecoveredFiles"
Related Topic