Replies: 1 comment
-
You'll want to look at the log files to begin diagnosing what is going awry. |
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
-
I make an .msi using wix, then bundle it into a bootstrapper with wix. When run by itself the .msi runs quickly, and doesn't ask the user for any input. When I bundle it into a bootstrapper, I get popups while it installs the .msi stating "Are you sure you want to cancel?" with yes/no buttons. Clicking no results in a successful installation. Why am I getting these popups? Are there pitfalls I should be aware of? Any help would be appreciated.
Even if I just put the .msi into the bootstrapper I run into this issue. I'm using wix 3.11.2
My simplified bootstrapper with redactions:
`
`
The CLI commands:
candle .\myBootstrapper.xml -ext WixBalExtension -ext WixUtilExtension -dVersion="1.0.4470"
light .\myBootstrapper.wixobj -ext WixBalExtension -ext WixUtilExtension -sw1076 -o setup.exe
Beta Was this translation helpful? Give feedback.
All reactions