|
|
|
|
#1 |
|
Junior Member
Join Date: Mar 2015
Posts: 8
|
NSIS silent install doesnt work with GIT installation
I am trying to embed multiple exe installations in my installer and below is the code snippet of what I am trying to do. All commands exc3ept GIT as silent installation does not work. It keeps popping up the UI. Can somebody please help me get GIT installation done silently
Section "notepad" notepad File "E:\install\jdk-7u55-windows-x64.exe" File "E:\install\Git-1.9.5-preview20141217.exe" File "E:\install\Slik-Subversion-1.8.11-x64.msi" ExecWait '"$INSTDIR\jdk-7u55-windows-x64.exe" INSTALLDIR="E:\ProgramFiles\java" /qn' ExecWait '"$INSTDIR\Git-1.9.5-preview20141217.exe" /S /qn /Passive' ExecWait 'msiexec /i "$INSTDIR\Slik-Subversion-1.8.11-x64.msi" INSTALLDIR="E:\ProgramFiles\Slik" /qb' SectionEnd |
|
|
|
|
|
#2 |
|
Senior Member
Join Date: Feb 2007
Location: Rijeka, Croatia
Posts: 225
|
/S is for NSIS installers and /qn is for MSI. That installer was created with Inno. Use /verysilent.
PostEnd: |
|
|
|
|
|
#3 |
|
Junior Member
Join Date: Mar 2015
Posts: 8
|
Thanks a lot! Worked like a charm.
|
|
|
|
![]() |
|
|||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|