views:

306

answers:

1

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?

+1  A: 

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)

Anders