gpt4 book ai didi

windows - 如何根据命令行参数在 Inno Setup 中提示重启?

转载 作者:行者123 更新时间:2023-12-03 11:07:01 28 4
gpt4 key购买 nike

在某些情况下,我的应用程序安装程序会希望用户重新启动他们的设备。理想情况下,我会传递一个参数,即

Setup.exe/RESTART=yes

并使用设置脚本评估:

AlwaysRestart={param:RESTART|no}

不幸的是,这是无效的:

Error on ... Setup.iss: Value of [Setup] section directive "AlwaysRestart" is invalid.
Compile aborted.

运行 InnoSetup 5.6.1

最佳答案

我发现我可以传递一个参数并在 NeedsRestart 中使用它 event function .如果我将 /restart=1 作为参数传递,这将提示用户在成功安装结束时重新启动系统。

[Code]
function NeedRestart(): Boolean;
begin
Result := ExpandConstant('{param:restart|0}') = '1';
end;

关于windows - 如何根据命令行参数在 Inno Setup 中提示重启?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63285703/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com