简体   繁体   中英

Inno Setup Batch compile more than one installer in parallel

I have 13 .iss scripts for Inno Setup and I want to compile them in parallel. At the moment I'm using a .bat file for a non-parallel compiling. It takes over two hours, so I want to parallel this.

It's not working with a start iscc ...

Can anyone help me?

There's no reason, why it should not work with start . It actually does work.

Maybe you use a 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 that the first argument to start is a window title.

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM