I have a solution that contains a setup project(made with VS2008 setup wizard). I need to have the option to silently install the setup project. I read that in order to do this, I should delete the User Interface screens. But this will make my setup project ONLY silent. I need it to be available to be used normally (non-silent), and when called with a specific argument, to be silent.

So my 2 questions:

  • How can I pass arguments to the setup project?
  • How can I create a silent install procedure, while also keeping the normal setup, when the project is called with no argument?

If there are resources on the web, please point me to them.

link|improve this question

Is it a msi or an exe? These all take standard options to run in silent mode with switches. – TheCodeKing Sep 17 '11 at 18:17
Thanks for answering - It's a msi. – Andrei Cristof Sep 17 '11 at 18:21
feedback

1 Answer

up vote 1 down vote accepted

Setup exe can usually be run in silent mode using:

setup.exe /q

MSI can be run in silent mode using:

msiexec /qn /i setup.msi
link|improve this answer
Thank you but I just tried to test this from the command line and it does not work. When I run this, it pops the msiexec argument list. Should I modify something in the installer? – Andrei Cristof Sep 17 '11 at 22:31
I think /i needs to come before the setup.msi, try that. – TheCodeKing Sep 17 '11 at 23:21
This almost worked. But when using a log argument to see what happens, I get: "Error 1303. The installer has insufficient privileges to access this directory: C:\Program Files (x86)[ProductName]". – Andrei Cristof Sep 18 '11 at 3:38
feedback

Your Answer

 
or
required, but never shown

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