当前位置 : 主页 > 编程语言 > delphi >

installer – 如何在Inno Setup安装脚本的[Run]部分设置进度条值?

来源:互联网 收集:自由互联 发布时间:2021-06-23
参见英文答案 Inno Setup: How to manipulate progress bar on Run section?1个 这类似于这个问题: Inno Setup Simple progress page for Run section 如果我将一些MSI文件添加到我的Inno Setup脚本中,我可以从[运行]部
参见英文答案 > Inno Setup: How to manipulate progress bar on Run section?                                    1个
这类似于这个问题:
Inno Setup Simple progress page for Run section

如果我将一些MSI文件添加到我的Inno Setup脚本中,我可以从[运行]部分安装这些文件.此时,进度条显示100%并在进度条上方显示StatusMsg.

我想手动设置[Run]部分中进度条的值,比如说值为50%.

类似于这样的事情:

[Run]
Filename: msiexec.exe; Parameters: "/i ""{#MyRtePath}\runtime.msi"" /qn /norestart"; \
    StatusMsg: Installing Runtime Engine; WizardForm.ProgressGauge.progress: 50 ;
通过从每个[Run]条目的BeforeInstall和/或AfterInstall处理程序中调用它,可以对链接到的问题使用类似的代码. 请注意,Inno本身将在文件部分中运行高达100%,因此您的代码将需要再次从0%开始,或者调整每个条目以使用自定义定位.
网友评论