This page says to do a silent install you pass in the parameters /s /v/qn
. It mentions what /s
does - silent install - but not what /v/qn
does.
So what does it do? Why the weird format? (on one installer I tried /v /qn
(with a space) and it didn't work. though on another i also had to do /S
(uppercase) and /v/qn
didn't seem to do anything.)
Read the page again.
So
/v/qn
will pass/qn
onto the embedded MSI installer. The/qn
is anmsiexec
switch indicating to run with no UI. You can find allmsiexec
switches in this support article.The "wierd" format is required because that is how the InstallShield command-line parser is programmed to function. Likely, they built it this way to ensure
msiexec
switches/properties will be unambiguous on the command-line and within scripts.