Skip to content

Instantly share code, notes, and snippets.

@supermarsx
Last active July 19, 2020 11:42
Show Gist options
  • Save supermarsx/541057763db7024140756ac7cd75415d to your computer and use it in GitHub Desktop.
Save supermarsx/541057763db7024140756ac7cd75415d to your computer and use it in GitHub Desktop.
Exchange 2013 Shell, Watch move-requeststatistics all
$MAILDATABASE = "MAILDATABASE"
$TIMEBETWEEN = 5
while (1) {
$CurrentStats = Get-MoveRequestStatistics -MoveRequestQueue $MAILDATABASE
cls
Write-Output $CurrentStats
sleep $TIMEBETWEEN
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment