Inno Setup Batch compile more than one installer in parallel -
i have 13 .iss
scripts inno setup , want compile them in parallel. @ moment i'm using .bat
file non-parallel compiling. takes on 2 hours, want parallel this.
it's not working start iscc ...
can me?
there's no reason, why should not work start
. work.
maybe use wrong syntax.
the correct syntax is:
start "compiling setup 1" "c:\program files (x86)\inno setup 5\iscc.exe" c:\setup1\example.iss start "compiling setup 2" "c:\program files (x86)\inno setup 5\iscc.exe" c:\setup2\example.iss
note first argument start
window title.
Comments
Post a Comment