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?
Wixsharp custom ManagedUI after bootstrapper bundle install prerequisites
885 views Asked by Jure Beton At
1
There are 1 answers
Related Questions in WIX
- Wix bundle of third party exe and new msi cant figure out detect conditions
- Getting 'Error writing to file' during WiX Toolset upgrade when changing installation scope
- Unable to format string in desired format - WiX
- wix toolset radio button condition
- How to Add custom dialog to Wix v4
- How to invoke UAC(Elevation shield) Prompt while trying to open bootstrapper bundle exe in WIX
- How do I use heat.exe with Visual Studio extension?
- Is anybody using WiX Toolset v5.0.0-rc.1?
- WixToolset v4 - Installation with scope "PerUser" fails when package NetFx462Redist is used
- Wix not writing to HKCU when run with a user needing admin login?
- WIX project Radio button value usage
- WinAPI / WIX - How to detect if the MSI installer is running on ARM64 or x86?
- Detect re-installation on rollback
- Update to Wix 3.14 from 3.11 get error MSB4181: The "MSBuild" task returned false but did not log an error
- Wix: Error LGHT0091: Duplicate symbol 'Property:WIX_IS_NETFRAMEWORK_472_OR_LATER_INSTALLED' found
Related Questions in SETUP-PROJECT
- C# WPF Visual Studio 2022 + SQL Server 2019 database. How to create SetupWizard properly?
- Getting the setup of the project prepared with C# and MSSQL on another computer
- Visual Studio Installer Project doesn't include my software exe
- How to make Bltools Projects, using devtools
- To validate user install step in installer project in Visual Studio 2022
- How can I access the summary information of a dll file installed in the GAC directory?
- How to setup an angular project in MacOS in vs code
- How to keep installation path while install my application and remove it while uninstalling it
- I can't create the setup in .NET Framework 4.7.2
- I was trying to set up drift using official documentation
- Microsoft Visual Studio Installer Projects 2022 - Error 1001 when installing migrated Windows form application to Visual Studio 2022/.Net 4.8
- Setting up IntelliJ environment to run old grails 2.4.2 code
- Visual Studio 2022 Installer not Bundling VC++ Redistributable
- Visual Studio Setup Project with VSTO Addin
- dependency errors- react native(0.65) project setup and upgrade
Related Questions in WIXSHARP
- Windows Installer Issue: Files Not Replaced After Major Upgrade - Seeking Assistance and Clarification
- C# WiX Custom Actions crash with "Could not load file or assembly"
- How do I configure or suppress RemoveFiles with WixSharp?
- WIX, does custom action in InstallExecuteSequence, will run on silent mode?
- How can to run custom action that would run on CANCEL/abort installation?
- Use custom action in wix bootstrapper | Wixsharp
- How to install exe via the wixsharp installer
- Install another app after user choose 'Install' in the UI but before start the services
- WixSharp: how to package a large folder into a single MSI file without getting 'The system cannot open the device or specified file' error
- WixSharp: Invalid characters in path error when adding ManagedAction to Project
- How to change the temporary folder used by WixSharp when building an MSI file?
- Why is it possible to install two MSIs with the same upgrade code?
- Windows Service won't run as a 32 bit process
- Wix (Wixsharp) one msi in different bundles
- C#- WixSharp: Sql Server/Windows Authentication for Sql Database
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)


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: