1

I want to install prerequisites and then display custom UI, with ManagedUI. So far I noticed that doesn't work. It works if I use Wix prebuild UI (WixUI_FeatureTree) but not with ManagedUI. I have bootstrapped bundle that installs .Net Framework 4.8 and C++ redistributables, and after that I want to display UI of my msi. Is there a way to make that work?

enter image description here

enter image description here

Bob Arnson
  • 21,377
  • 2
  • 40
  • 47
Jure Beton
  • 137
  • 1
  • 9

1 Answers1

1

Unfortunately using a combination of a ManagedUI and the default Bundle bootstrapper is not possible due to an underlying Wix v3.x issue. Wix Burn, which is used to create the bootstrapper bundle, doesn't support the WiX EmbeddedUI concept. The Wix team has acknowledged this and does not plan to correct this in the 3.x version.

An alternative is to use the NSIS (Nullsoft Scriptable Install System) bootstrapper as an alternative to the Wix Burn bootstrapper. See NsisBootstrapper sample.

See:

Randy Burden
  • 2,611
  • 1
  • 26
  • 34