I have a Windows MSI installer package which gives me the choice to do a Typical, Custom or Complete install using the GUI.

The default (typical) install only installs some components.

How to I tell it to do a complete install from the command line using the /passive switch?

The installer version is: 5.0.7600.

link|improve this question

feedback

2 Answers

On a related note. To deal with the ridiculously complex command line for msiexec.exe you can use this free tool from Wise: http://www2.wise.com/filelib/WICLB.exe

It allows you to build a command line interactively: enter image description here

link|improve this answer
feedback

Try adding ADDLOCAL=ALL to the overall msiexec.exe command. Something like:

C:\Windows\system32\msiexec.exe /I "D:\winzip112.msi" /QN ADDLOCAL=ALL

More details: http://msdn.microsoft.com/en-us/library/aa367536(v=vs.85).aspx

link|improve this answer
Thanks, will give this a shot. – Kev Jun 13 '11 at 11:13
feedback

Your Answer

 
or
required, but never shown

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