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