In my work project, we have to create 4 installers using Inno Setup. That way, I have to run file by file, which ends up demanding more of my time.
Files *.iss:
Would it be possible to create a batch file (.bat) to compile all these *.iss files at once?
There's ISCC.exe
command-line Inno Setup compiler.
So you can do:
ISCC.exe setup_prog_01.iss
ISCC.exe setup_prog_02.iss
ISCC.exe setup_prog_03.iss
ISCC.exe setup_prog_04.iss