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.

enter image description here


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -