Inno Setup Batch 并行编译多个安装程序

Inno Setup Batch compile more than one installer in parallel

我有 13 个 .iss Inno Setup 脚本,我想并行编译它们。 目前我正在使用 .bat 文件进行非并行编译。需要两个多小时,所以我想并行一下。

它不适用于 start iscc ...

谁能帮帮我?

没有理由不能与 start 一起使用。它确实有效。

可能你使用了错误的语法。

正确的语法是:

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

请注意 start 的第一个参数是 window 标题。