Remove Exchange Mailbox Move-Request
Remove Exchange Mailbox Move-Request using PowerShell
Lets look at how to remove Exchange Mailbox Move-Request with PowerShell.
Get-MoveRequest
This will list all current Mailbox Move-Requests InProgress and Completed.
To remove run :
Remove-MoveRequest -Confirm:$false
Lets looks at combining the “Get” option and only show “Completed” Move-Requests and then remove the “Completed” Move-Requests.
Get-MoveRequest |Where-Object {$_.Status -eq "Completed"} |Remove-MoveRequest
There you Go 🙂
#ThatLazyAdmin