Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can an Inno-Setup ISS script include an external ISS script file?

Tags:

inno-setup

I'm creating an installation script that I'd like to break up into smaller, more manageable pieces. Is there a way for an Inno Script file to have an INCLUDE or a reference to another ISS script file that is separate and has a different function overall to play during installation but becomes an integrated part of the full installation itself?

Consider: ProgramInstall.iss SQLInstall.iss SOAPInstall.iss

ProgramInstall would have an include to the other scripts and return one full EXE that did the job as if they were all in one large file.

Not only would this be helpful for management purposes but would allow me to reuse scripts that are tested and working with other main application installation projects. Thanks for any assistance.

like image 460
Jeff Avatar asked Jul 02 '10 02:07

Jeff


Video Answer


1 Answers

Well - I guess finding the right section of the CHM file is always helpful.

http://www.jrsoftware.org/ishelp/index.php?topic=scriptformatoverview

Inno-Setup seems to include an C like #include directive.

like image 137
Jeff Avatar answered Sep 18 '22 22:09

Jeff