This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
internet:mail:exchange:exchange_export_import [2018/09/18 09:41] gcooper created |
internet:mail:exchange:exchange_export_import [2018/09/18 10:07] (current) gcooper |
||
---|---|---|---|
Line 9: | Line 9: | ||
< | < | ||
New-MailboxExportRequest -Mailbox user@domain.tld -FilePath \\localhost\temp\user_company.pst | 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 " | New-MailboxImportRequest -Mailbox other.user@domain.tld -FilePath \\localhost\temp\user_company.pst -TargetRootFolder " | ||
+ | |||
+ | Get-MailboxImportRequest | ||
</ | </ | ||
+ | |||
+ | Clear completed (or all) export requests: | ||
+ | |||
+ | < | ||
+ | Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest | ||
+ | |||
+ | Get-MailboxExportRequest | Remove-MailboxExportRequest | ||
+ | </ | ||
+ | |||
+ | Clear completed (or all) import requests: | ||
+ | |||
+ | < | ||
+ | Get-MailboxImportRequest -Status Completed | Remove-MailboxImportRequest | ||
+ | |||
+ | Get-MailboxImportRequest | Remove-MailboxImportRequest | ||
+ | </ | ||
+ |