Can you use WMI to create an MSMQ message queue (PRIVATE queue)? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T12:50:56Zhttp://stackoverflow.com/feeds/question/102877http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue1Can you use WMI to create an MSMQ message queue (PRIVATE queue)? ferventcoder2008-09-19T15:29:23Z2009-09-26T04:00:02Z
<p>I need to create a PRIVATE message queue on a remote machine and I have resolved to fact that I can't do this with the .NET Framework in a straight forward manner. I can create a public message queue on a remote machine, but not a PRIVATE one. I can create a message queue (public or private) locally.</p>
<p>I am wondering if anyone knows how to access MSMQ through WMI.</p>
<p><strong>Edit:</strong> I don't see anything to do it with using the MSMQ Provider. May have to get tricky and use PSExec to log onto a remote server and execute some code.</p>
http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/103897#1038970Answer by bpfinn for Can you use WMI to create an MSMQ message queue (PRIVATE queue)? bpfinn2008-09-19T17:28:24Z2008-09-19T17:28:24Z<p>A blog post about MSMQ and WMI is here: <a href="http://msmq.spaces.live.com/blog/cns!393534E869CE55B7!210.entry" rel="nofollow">http://msmq.spaces.live.com/blog/cns!393534E869CE55B7!210.entry</a></p>
<p>It says there is a provider here: <a href="http://www.msmq.biz/Blog/MSMQWmiSetup.msi" rel="nofollow">http://www.msmq.biz/Blog/MSMQWmiSetup.msi</a></p>
<p>It also says there is a reference here: <a href="http://www.msmq.biz/Blog/MSMQ%20WMI%20Provider%20Objects.doc" rel="nofollow">http://www.msmq.biz/Blog/MSMQ%20WMI%20Provider%20Objects.doc</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/155784#1557840Answer by TheSoftwareJedi for Can you use WMI to create an MSMQ message queue (PRIVATE queue)? TheSoftwareJedi2008-10-01T00:58:44Z2008-10-01T00:58:44Z<p>WMI can't do this out-of-box. The previous answer has some obsucre WMI provider, but it doesn't even seem to support Queue creation.</p>
<p>This is very simple in .NET however! I wouldn't go so far as PSExec.
<a href="http://msdn.microsoft.com/en-us/library/aa329475(VS.71).aspx" rel="nofollow">MessageQueue.Create</a></p>
http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/253805#2538050Answer by Yoel Arnon for Can you use WMI to create an MSMQ message queue (PRIVATE queue)? Yoel Arnon2008-10-31T14:55:45Z2008-10-31T14:55:45Z<p>Yes, queue creation is simple in .NET, however you cannot create a private queue on a remote machine this way.
I have been thinking about adding queue creation to the MSMQ WMI provider for some time... If you need it for a real product / customer, you can contact me and I will consider giving this feature a priority.
All the best,
Yoel Arnon</p>
http://stackoverflow.com/questions/102877/can-you-use-wmi-to-create-an-msmq-message-queue-private-queue/287206#2872060Answer by Imtiyaz Desai for Can you use WMI to create an MSMQ message queue (PRIVATE queue)? Imtiyaz Desai2008-11-13T15:17:41Z2008-11-13T15:17:41Z<p>set qinfo = CreateObject("MSMQ.MSMQQueueInfo")</p>
<p>qinfo.PathName = ".\Private$\TestQueue"</p>
<p>qinfo.Label = ".\Private$\TestQueue"</p>
<p>qinfo.Journal = "1"</p>
<p>qinfo.Create</p>
<p>Copy the code in a notepad and save the file as .vbs and execute.</p>