Pages

Monday, June 15, 2020

HOW TO: REMOVE EXCHANGE MAILBOX EXPORT REQUESTS


HOW TO: REMOVE EXCHANGE MAILBOX EXPORT REQUESTS


After a number of exports or imports, you might need to clean up the failed, completed or other status when running the get-mailboxexportrequest report in PowerShell. To clean these open the Exchange PowerShell and run the below.

Clean Export requests
Get-MailboxExportRequest -Status Completed | Remove-MailboxExportRequest
Get-MailboxExportRequest -Status Failed | Remove-MailboxExportRequest

Clean Import requests
Get-MailboxImportRequest -Status Completed | Remove-MailboxExportRequest
Get-MailboxImportRequest -Status Failed | Remove-MailboxExportRequest

No comments: