Skip to content
⌘ NSIS Forum Archive

NSIS silent install doesnt work with GIT installation

3 posts

prishra#

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
aerDNA#
/S is for NSIS installers and /qn is for MSI. That installer was created with Inno. Use /verysilent.