在Inno Setup脚本中提供SignTool配置

时间:2018-11-23 15:08:45

标签: inno-setup code-signing signing signtool

我具有以下Inno Setup签名配置:

[Setup]
SignTool=signtool $f
SignedUninstaller=yes

在Inem Setup Compiler IDE的“工具>配置签名工具...” 中,我有:

"C:\DEVELOPMENT\Setup\signtool.exe" sign /f C:\DEVELOPMENT\Signing_Certificate.pfx /p "my_password" $f

...当我编译Inno Setup时,这在我的本地计算机上效果很好。

但是,我们需要使用TeamCity自动构建安装程序。因此,这一切必须是自动的。而且签名工具的配置需要包含在脚本中,而无需事先进行任何配置。

无论如何,是否在实际的Inno Setup脚本中将我的路径声明为变量,以便在上方的签名向导行中将其拾取?

1 个答案:

答案 0 :(得分:0)

对于自动构建,请勿使用Inno Setup IDE。您应该使用iscc command-line compiler

要配置签名工具,iscc具有/S开关:

iscc example.iss "/Ssigntool=C:\DEVELOPMENT\Setup\signtool.exe sign /f C:\DEVELOPMENT\Signing_Certificate.pfx /p my_password $f"