Clear all completed Exchange Mailbox Move Requests in bulk
The Variable Method:
$move = get-MoveRequest | Where {$_.Status –eq ‘completed’}
Or
The One Liner:
get-MoveRequest | Where {$_.Status –eq ‘completed’} | Remove-moverequest -confirm:$false