I'm using Inno Setup, and I need to install a third-party driver. Everything is OK, except that this third-party installation program asks to restart the machine, before my installation script terminate.
Example: I need to install two drivers, the second need the first installed, but the first driver needs to restart the machine.
[Run]
Filename: "FirstDriver.msi"; Flags: shellexec waituntilterminated;
Filename: "SecondDriver.msi"; Flags: shellexec waituntilterminated;
I'd like to restart only my installation is complete. How can I do it?