I have a third party application I would like to silent install from the command line.

The application is PPLive available at: http://www.pptv.com/en/

It is an NSIS installer, and currently when silently installed, installs toolbars, and additional pieces of software, launches on completion etc.

Without repackaging it, how do I control the checkbox options on the pages of the normal installer from the silent command line install.

Is it even possible?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can't control the components unless the installer has been coded specifically for it (By using a "answer" file/.ini or some parameter you pass on the commandline) NSIS itself only allows the author of the installer to know if it is in silent mode or not, the rest is up to them. You would have to ask the PPLive people about it (Or request that they add it if they don't support it already)

link|improve this answer
Do you have an example, maybe a URL, of a .nsi config file showing how to parse custom command line options? – leif81 Mar 9 '11 at 21:05
@leif81: E.1.12 GetOptions in the helpfile – Anders Mar 10 '11 at 19:52
feedback

NSIS supports the silent install option with the /S command line script, however, it only sets a flag that the install script can check:using IfSilent.

There is an example script here that demonstrated a silent installation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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