Accessing MSMQ via PowerShell

后端 未结 2 589
春和景丽
春和景丽 2021-01-12 18:41

I have installed the MSMQ feature onto both server (win 2008 R2) and client machine (win 7) using the following Link. The Feature appears in the server manager and I am able

2条回答
  •  攒了一身酷
    2021-01-12 19:10

    The below method works in Powershell 2.0:

    $query = "SELECT MessagesinQueue FROM Win32_PerfRawData_MSMQ_MSMQQueue WHERE Name = 'myPrivateQueueName'"
    $wmiObject = Get-WmiObject -Query $query
    $wmiObject.MessagesinQueue
    

    You can list the queues with this query:

    $query = "SELECT * FROM Win32_PerfRawData_MSMQ_MSMQQueue"
    

    Look at the __PATH property which will end in .Name="theQueueName"

提交回复
热议问题