I need some help to create a WiX Bootstrapper without the license UI. I have a WiX MSI setup which has all screens like: Welcome, License, Destination Folder and Progress UI.
This MSI should run through Bootstrap.exe using WiX Bundle. When I run this, I can see two license screens - one is Bootstrapper and another is my MSI screen. So how can I eliminate / hide bootstrapper license UI.
Is there a way to run install directly without clicking install button in Bootstrapper UI?
Prerequisites?: Do you need the bootstrapper to install prerequisites, or do you just want to wrap your MSI in a
setup.exe? You can create setup.exe files using some other tools as well (Zip tools, VS Installer Projects, etc...).Rationale: I am not aware of a way to hide the bootstrapper license dialog when you use the standard bootstrapper application. I believe the idea is that all MSI's are supposed to run in silent mode kicked off by the bootstrapper, and hence the license dialogs of each setup is hidden.
Custom Bootstrapper Application: I haven't really tried this, but you can create your own bootstrapper application - the application that runs the setup.exe GUI - and then you can hide the license dialog. The only sample I can think of right now is Rainer Stropek's sample here. Not much to go on, but the best I got at the moment. This is a simple sample with very basic GUI.