Get MSMQ (Message Queuing) queues with Powershell frank March 16, 2015 No Comments Simple, yet effective. Especially if you don’t have the MSMQ module for PS. $queues = Get-WmiObject -computername "YourServer" Win32_PerfFormattedData_msmq_MSMQQueue $queues | ft -AutoSize -property Name,MessagesInQueue – F