Last active
July 19, 2020 11:42
-
-
Save supermarsx/541057763db7024140756ac7cd75415d to your computer and use it in GitHub Desktop.
Exchange 2013 Shell, Watch move-requeststatistics all
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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