Forum Discussion

Shaun Hardneck's avatar
Shaun Hardneck
Copper Contributor
May 01, 2017

Get All Failed MoveRequests (Exchange 2013)

To quickly get all 'Failed Move-Request' you can run the following one liner.

 

Get-MoveRequest | Where-Object {$_.Status -eq "failed"}

 

To Remove all 'Failed Move-Requests' you can run the following:

 

Get-MoveRequest | Where-Object {$_.Status -eq "failed"} | Remove-MoveRequest

 

#ThatLazyAdmin

 

No RepliesBe the first to reply

Resources