Powershell : Retrieving the message count for MSMQ queues
Created: 08 Dec 2012 | Updated: 18 Jan 2013 | 14 comments
This issue has been solved. See solution.
Hello,
Do you have a script to monitor all MSMQ queues on Vault?
I found some on Internet but they don't work as the queue names get truncated to 64 characters.
Thanks!
Discussion Filed Under:
Comments 14 Comments • Jump to latest comment
Does it have to be powershell??
Wayne Humphrey wrote a nice little VBScript you can find here:
http://www.symantec.com/connect/blogs/monitoring-msmq-vbs
Did you look at the PowerShell Community Extensions:
http://pscx.codeplex.com/releases/view/96847
Many Thanks,
Rob
www.quadrotech-it.com - All your EV Tools
PS I hope that the post proves helpful.
No, it does not have to be necessary Powershell, it can be other language.
I will check this vbs and if it works I will mark as the solution.
Thanks again, great forum full of experts!
I just tried the script but it returns 0 messages (although when I check in compmgmt.msc there are about 100 messages).
I've a script which monitors EV other MSMQ and generates HTML email alerts based on parameters definied within script.
At the core, it uses WMI query to pull MSMQ information for multiple servers.
I can upload it to download section but might take couple days as it goes through approvals.
If you wish, I can email it to you and you can test if it works for you
Thank You
AKL
Thanks for reply, yes it could be great if you can send me by email so I can test.
here's how you can use the WMI called from powershell. works like a charm. just put this in a file whatever.ps1 and you're off to the races. you can substitute the ft for fl or however you'd like the results to be listed.
$queues = Get-WmiObject Win32_PerfFormattedData_msmq_MSMQQueue
$queues | ft -property Name,MessagesInQueue
Andy Becker | Authorized Symantec Consultant | Trace3 | Symantec National Partner | www.trace3.com
We use the attached Powershell.
The file srvlist.txt (which is called in the PS1 file) is filled with the aliasses of the EV-servers, 1 per line.
This list reports if an EV-queue is over 100 messages.
Rename file to .ps1, test
Thank you, Gertjan, MCSE, MCITP,MCTS, SCS, STS
Company: www.t2.nl
www.quadrotech-it.com
www.symantec.com/vision
You might want to have a look at MSMQ Monitor :
http://www.quadrotech-it.com/products/evtools/msmq-monitor/
Many Thanks,
Rob
www.quadrotech-it.com - All your EV Tools
PS I hope that the post proves helpful.
I just tested this tool on my EV server (clustered) :
PS C:\msmq> .\MSMQMonitor.exe
I've never tried it on a clustered environment. Did you try any of the command line switches from the instructions on the QUADROtech web site?
(Feel free to email direct to troubleshoot -> rob.wilcox@quadrotech-it.com)
Many Thanks,
Rob
www.quadrotech-it.com - All your EV Tools
PS I hope that the post proves helpful.
I sent you an email with more info, thanks in advance.
NP - I think we got to the bottom of (part of) it on email .. MSMQ Monitor currently doesn't support clustered servers.
As mentioned over email, I'll dig out some other code and send it over.
Many Thanks,
Rob
www.quadrotech-it.com - All your EV Tools
PS I hope that the post proves helpful.
Would you like to reply?
Login or Register to post your comment.