tags:

views:

20

answers:

1

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.

A: 

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.

Jeff