vote up 1 vote down star
1

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.

I am wondering if anyone knows how to access MSMQ through WMI.

Edit: 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.

flag

33% accept rate

4 Answers

vote up 0 vote down

A blog post about MSMQ and WMI is here: http://msmq.spaces.live.com/blog/cns!393534E869CE55B7!210.entry

It says there is a provider here: http://www.msmq.biz/Blog/MSMQWmiSetup.msi

It also says there is a reference here: http://www.msmq.biz/Blog/MSMQ%20WMI%20Provider%20Objects.doc

Hope this helps.

link|flag
I saw this one. I didn't know if that meant the provider had to be installed on the remote machine or not. – ferventcoder Sep 20 '08 at 15:26
The provider doesn't actually give a method to install a private queue anywhere, and not on a remote server. – ferventcoder Sep 26 '08 at 3:14
vote up 0 vote down

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.

This is very simple in .NET however! I wouldn't go so far as PSExec. MessageQueue.Create

link|flag
Sorry man. All documentation and subsequent integration tests prove you cannot use that to create a PRIVATE message queue remotely. – ferventcoder Oct 3 '08 at 5:21
vote up 0 vote down

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

link|flag
Hmmmm... we would like to be able to where I work. It would help with our automated deployment process tremendously. – ferventcoder Nov 24 '08 at 17:10
vote up 0 vote down

set qinfo = CreateObject("MSMQ.MSMQQueueInfo")

qinfo.PathName = ".\Private$\TestQueue"

qinfo.Label = ".\Private$\TestQueue"

qinfo.Journal = "1"

qinfo.Create

Copy the code in a notepad and save the file as .vbs and execute.

link|flag
Remote please... not local creation – ferventcoder Nov 24 '08 at 17:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.