I am using Inno Setup. I want to ask user to install 3-rd party drivers after [tasks] (Select Additional Tasks wizard) section, before extraction (installation). My purpose is check box on (Select Additional Tasks wizard) on tasks to check this. I know I can start it from [Run] section. I also check I can do it like this:
[Tasks]
Name: "install_3rd"; Description: "Install ....."; GroupDescription: "External drivers:";
[Run]
Filename: "<DriverFile>"; StatusMsg: "Installing ..."; Tasks: install_3rd; Flags: skipifsilent
from: Inno Setup launch executable (to install drivers) during installation
Can I do this direct from [tasks] section.