https://docs.microsoft.com/en-us/powershell/module/msmq/get-msmqqueue?view=win10-ps
Last active
December 16, 2018 10:53
-
-
Save KristofferRisa/56e2b28c274c526b4f713839687e9a2f to your computer and use it in GitHub Desktop.
Administrating Msmq with Powershell
This file contains hidden or 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
get-msmqqueue | where messagecount -gt 0 | select queuename, MessageCount |
This file contains hidden or 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
Get-MsmqOutgoingQueue | select DestinationQueueFormatName,MessageCount,UnacknowledgeMessageCount,UnprocessedMessageCount,ConnectionHost,State |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment