Reputation: 33
I am using nsis to make an installer. In this installer are multiple exe files included, which are all installers as well. I want to run them quietly without user interaction. I am having issues with one of them, as when run with the parameter /S it does not install the desired program.
I have tried to run the installer silently with the parameters I want to set
ExecWait '"$INSTDIR\MIL64Setup.exe" /S /V "REMOVE=VisualStudioAddOn,MIL.NET,ProcessingTraining ADDLOCAL=mtxGigE drvmanage=250"/qn'
and without the parameters
ExecWait '"$INSTDIR\MIL64Setup.exe" /S'
yet nothing works. If I run the installer manually, it works.
When I run /? it returns this:
Command line parameters:
/L language ID
/S Hide initalization dialog. For silent mode use: /S /v /qn
/V parameters to MsiExec.exe
/UA <url to InstMsiA.exe>
/UW <url to InstMsiW.exe<
/UM <url to msi package>
/US <url to IsScript.msi>
Upvotes: 0
Views: 13