I have a program which requires .NET 4.7.2. Therefore i created a bootstrapper which downloads .NET and install it. Unfortunately the installtion requires a reboot. My question is how can i tell Windows to start my MSI after the reboot of the .NET installtion?
Asked
Active
Viewed 114 times
1 Answers
2
You can write a registry value under the Run keys for this, with a command line for msiexec to launch your package.
However, this should be handled automatically by most [setup authoring tools]2. What tool are you using to build your setup?
EDIT: Here are two related topics on handling this when building packages with Wix Toolset:

Bogdan Mitrache
- 10,536
- 19
- 34
-
I'm using WIX for the creation of the setup. – Action Heinz Jun 09 '19 at 13:43