i have configure archiving policy. now i need to back archive data to original location. i mean back to original inbox, Sent item etc.
Please suggest
Technology Tips and News
i have configure archiving policy. now i need to back archive data to original location. i mean back to original inbox, Sent item etc.
Please suggest
Hi,
Please refer to the following command to export the archive mailbox to a .pst file:
New-MailboxExportRequest -Mailbox Test -FilePath "\\SERVER01\PSTFileShare\Test_Archive.pst" -IsArchive
For more information about this, please refer to:
https://technet.microsoft.com/en-us/library/ff607299(v=exchg.150).aspx
Then we can do the following command to import PST file to the primary mailbox:
New-MailboxImportRequest Test - FilePath "\\SERVER01\PSTFileShare\Test_Archive.pst" -TargetRootFolder /
https://technet.microsoft.com/en-us/library/ff607310(v=exchg.150).aspx
If you still have any question about Mailbox import and export requests, please refer to:
Regards,