I developed an application that needs MS Message Queuing to work.
But it's really boring to have to go to the control panel of every computer where it's going to be running and go to Control Panel - Add/Remove Programs - Windows Components - Install Message Queuing.
So I would like to do that operation automatically, while running the setups.

Is there a Command Line instruction to install MSMQ?

Thanks :D

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Fun question.

Via Technet:

To run Message Queuing unattended setup, type the following command at the command prompt in the Windows system folder:

sysocmgr.exe /i:sysoc.inf /u: path and file name of answer file

It looks like your answer file should contain:

[Components]
msmq_Core = on
Reminst = on

If it's a client, you'll need another section in the answer file pointing to your server:

[msmq]
SupportingServer = *UNC path of Message Queueing server*

There are a few more options depending on your situation. More details on Sysocmgr and the answer file here.

link|improve this answer
Thanks Kara! I just had to change the answer file in order to also install the triggers and it worked perfectly! – user31591 Jan 14 '10 at 11:37
feedback

Your Answer

 
or
required, but never shown