Inno Setup - 防止从设置进度条中提取文件到100%

时间:2016-03-30 16:02:11

标签: inno-setup

在Inno Setup wpInstalling页面中,如何阻止初始提取[Files]部分中定义的文件,将进度条设置为(几乎)100%?

enter image description here

我的安装脚本主要包括从“[运行]”部分安装许多第三方安装文件。示例如下:

[Run]
Filename: "{tmp}\vcredist_x86-2010-sp1.exe"; Parameters: "/q /norestart"; Check: InstallVCRedist;  BeforeInstall: UpdateProgress(10, 'Installing Microsoft Visual C++ 2010 x86 Redistributable - 10.0.40219...');
Filename: "{tmp}\openfire_3_8_1.exe"; Check: InstallOpenFire; BeforeInstall: UpdateProgress(25, 'Installing OpenFire 3.8.1...');
Filename: "{tmp}\postgresql-8.4.16-2-windows.exe"; Parameters: "--mode unattended --unattendedmodeui none --datadir ""{commonappdata}\PostgreSQL\8.4\data"" --install_runtimes 0"; Check: InstallPostgreSQL;  BeforeInstall: UpdateProgress(35, 'Installing PostgreSQL 8.4...'); AfterInstall: UpdateProgress(50, 'Setting up database...');

这些第三方组件的安装所花费的时间比安装的任何其他部分要长(到目前为止),但不幸的是,在初始提取这些文件期间,进度条从0%变为接近100%。然后,我可以使用以下过程将进度条重置为我选择的数量:

procedure UpdateProgress(Position: Integer; StatusMsg: String);
begin
  WizardForm.StatusLabel.Caption := StatusMsg;
  WizardForm.ProgressGauge.Position := Position * WizardForm.ProgressGauge.Max div 100;
end;

理想情况下,我更喜欢初始提取而不是0-10%(大约),因为这更能代表实际发生的情况。

是否有任何事件可以捕获文件提取的进度,或者是一种防止或阻止文件提取更新进度条的方法?

1 个答案:

答案 0 :(得分:2)

您必须增加WizardForm.ProgressGauge.Max

但不幸的是,Inno Setup设置初始最大值后没有发生任何事件。

您可以滥用第一个已安装文件的BeforeInstall parameter

然后在[Run]部分中,使用AfterInstall来推进该栏。

这扩展了我对Inno Setup: How to manipulate progress bar on Run section?

的回答
[Files]
Source: "vcredist_x86-2010-sp1.exe"; DestDir: "{tmp}"; BeforeInstall: SetProgressMax(10)
Source: "openfire_3_8_1.exe"; DestDir: "{tmp}"; 

[Run]
Filename: "{tmp}\vcredist_x86-2010-sp1.exe"; AfterInstall: UpdateProgress(55);
Filename: "{tmp}\openfire_3_8_1.exe"; AfterInstall: UpdateProgress(100);
[Code]

procedure SetProgressMax(Ratio: Integer);
begin
  WizardForm.ProgressGauge.Max := WizardForm.ProgressGauge.Max * Ratio;
end;

procedure UpdateProgress(Position: Integer);
begin
  WizardForm.ProgressGauge.Position := Position * WizardForm.ProgressGauge.Max div 100;
end;