#Releasing Windows Installation Wizards using Inno Setup
- Inno Setup : http://www.jrsoftware.org/isdl.php
- Inno Script Studio : https://www.kymoto.org/products/inno-script-studio
- ISSI Library : http://members.home.nl/albartus/issi/
-
After installing the above packages, (ISSI to
C:\ISSI
), you need to make 1 change to 1 file to use provided scripts.- Open
C:\ISSI\_issi.isi
- Go to line 4060
- Change
function InitializeSetup(): Boolean;
tofunction InitializeSetupISSI(): Boolean;
.
- Open
-
Inside the InstallScripts folder are example scripts that use dependencies in subdirectories. Open a script in "Inno Script Studio".
-
Change all the absolute paths to represent where they are on your machine.
-
Change the files you wish to include in the release, as well as the splash images, icons, package version, and unique ID for the package (used for Windows registries).
-
The gear icon in studio with a play symbol compiles the install executable.
-
If there any errors, it will let you know where.