문제

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?

도움이 되었습니까?

해결책

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)

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top