Simple bootstrapper with prerequisites and main MSI #8703
Unanswered
FredAtIvory
asked this question in
Questions
Replies: 1 comment
-
For wix3 short answer is no. I think the same is true for wix v4 and 5. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a C# WPF application with a WiX 5 installer that works great. I'm moving the application to .NET 8 and want to automatically install two prerequisites: (1) .NET 8 Desktop Runtime x86 and (2) WebView2. To do this, I created a Bundle using bal:WixInternalUIBootstrapperApplication:
This is working in the sense that it installs the prerequisites as needed and shows the UI for the main application (Setup.msi), but I end up with an ARP entry for the bundle and the BA seems to be designed as a package manager which is overkill for what I need.
What I want is a simple wrapper/bootstrapper which installs the prerequisites and then runs the MSI. I want to end up with the prerequisites installed and a single ARP entry for my application which acts the same as if I had run the MSI directly.
What's the best way to achieve that? Should I use Burn or write something custom?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions