1

How to create checkboxes at finished page to install DirectX? (dxwebsetup.exe for example).

I see this with some information: Is it possible to create checkbox tree view in Inno Setup? but I want to understand how to give it action to these checkboxes.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
Nico Z
  • 997
  • 10
  • 33

1 Answers1

2

Add [Run] section entry with postinstall flag.

To run an installer you also may need the runascurrentuser flag to retain elevated privileges.

[Run]
Filename: "{tmp}\dxwebsetup.exe"; Description: "Install DirectX"; \
  Flags: postinstall runascurrentuser

Post install run

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992