Search code examples
progress-barinno-setuppascalscript

Show progress details (like speed) when installing files with Inno Setup


I'm trying to add a dynamic progress bar in my installer. I want to install some programs with my installer. The progress bar literally should show, which program files are currently install right now. It should look like this example:

enter image description here

I do try something like this : Inno Setup: How to manipulate progress bar on Run section?

[Code]

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

But I also want to see the the actual speed, status, elapsed time, etc. Is there an opportunity to realize it?


Solution

  • Inno Setup API does not give you the information you would need to implement this (state of an installation of a specific file).

    So it's not possible (unless you add the functionality to Inno Setup).