User Tools

Site Tools


internet:mail:exchange:exchange_export_import

This is an old revision of the document!


Exchange Export and Import

Exchange Management Shell (EMS)

https://www.stellarinfo.com/blog/how-to-export-exmailboxes-to-pst/

:!: The following commands require a network share. Depending on server load, it might be best to use a share on another host.

New-MailboxExportRequest -Mailbox user@domain.tld -FilePath \\localhost\temp\user_company.pst

Get-MailboxExportRequest

New-MailboxImportRequest -Mailbox other.user@domain.tld -FilePath \\localhost\temp\user_company.pst -TargetRootFolder "Folder Name"

Get-MailboxImportRequest

Clear completed export requests:

Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest

Clear all export requests:

Get-MailboxExportRequest | Remove-MailboxExportRequest

Clear completed import requests:

Get-MailboxImportRequest -Status Completed | Remove-MailboxImportRequest

Clear all import requests:

Get-MailboxImportRequest | Remove-MailboxImportRequest
internet/mail/exchange/exchange_export_import.1537286770.txt.gz · Last modified: 2018/09/18 10:06 by gcooper