This scripts display the realtime moves of mailboxes:
completed:
|
while ($true) { Get-MoveRequest | Get-MoveRequestStatistics; Start-Sleep -Seconds 2; Clear-Host; }
|
without clear-host
|
while ($true) { Get-MoveRequest | Get-MoveRequestStatistics; Start-Sleep -Seconds 2; }
|
only show completed
|
while (1 -eq 1) { Get-MoveRequest | Get-MoveRequestStatistics | Where {$_.Status -eq “Completed”} ; Start-Sleep -Seconds 2; Clear-Host; }
|