Skip to content

Instantly share code, notes, and snippets.

@3ffusi0on
Created February 14, 2016 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3ffusi0on/f5933ce0b690a4a0ddde to your computer and use it in GitHub Desktop.
Save 3ffusi0on/f5933ce0b690a4a0ddde to your computer and use it in GitHub Desktop.
Setup configuration file for Inno Setup Configurator
; Setup.exe config file
; Using Inno setup : http://www.jrsoftware.org/
; Install extra .exe and .msi
[Setup]
AppName=App Name
AppVersion=1.0
DefaultDirName={pf}\MyFolder
Compression=lzma2
SolidCompression=yes
OutputDir=userdocs:Inno Setup
[Files]
Source: "PyQt4-4.11.4-gpl-Py3.4-Qt4.8.7-x32.exe"; DestDir: "{app}"
Source: "python-3.4.4.msi"; DestDir: "{app}"
Source: "script.pyw"; DestDir: "{app}"
[Run]
Filename: "msiexec.exe"; Parameters: "/i ""{app}\python-3.4.4.msi"""; StatusMsg: "Installation de Python 3.4"
Filename: "{app}\PyQt4-4.11.4-gpl-Py3.4-Qt4.8.7-x32.exe"; StatusMsg: "Installation de PyQt4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment