Archive: Command line parameters question


Command line parameters question
Hi,

I've found: AGREETOLICENSE="yes", but it doesn't work... :(
Could someone help me?

What command line parameters are defined in NSIS?
I've tried: /SILENT, /q and /AGREETOLICENSE="yes"...

Thanks for help


http://lmgtfy.com/?q=nsis+command+line+parameters&l=1


Thanks MSG,

I've already found this page, but it doesn't solve my problem...anyway I don't see a solution with the command line parameters from this page...
So I wrote my question in the forum, if anybody knows how I can run it silently and accept the license term.

/S , /SILENT and /q doesn't work:(

Perhaps someone have already solved a similar problem?


If /S isn't working (case sensitive) then you must be using it wrong (no idea how). /S is a built in switch which enables silent install (i.e. no UI at all). There is no built in switch to skip the license page, however. You need to add one yourself. Use GetParameters and GetOptions from the manual.

Stu


Thanks Afrow UK, I've got it:)

Only one more question:
I want to embed an installer into my NSIS installer, so I use ExecWait.
But this installer is not an usual installer like "Windows Installer" or "Install Shield", but it's an "own-built-installer" from a company...

So I don't know / don't have any command line parameters to make this installer silent??


You cannot make a 3rd party installer silent if it doesn't support it... You should ask the company who made it.


Ok, thanks MSG.