I was looking at creating a WiX bundle installer that would provide a checkbox for each of the installers that are contained within the defined chains to allow the user to pick which packages they want to install (similar to the Visual Studio installer). I started down the path of creating a custom bootrapper by extending the BootstrapperApplication
and overriding the Run method as I have seen on a couple of blog posts. I do not see anything in the BootStrapperApplication
class that provides access to information on the chains and contained packages. Is this information available through the APIs?
Accessing installer package information in WiX Custom bootstrapper UI
1.5k Views Asked by Rob Goodwin At
1
The information about which packages and features are included in the bundle is actually available through an XML file that get dropped on the system at runtime. I have a series of blog post that walk through this process with code samples.
Here's an (edited) excerpt that deals with your question:
The intro post is here: https://www.wrightfully.com/2013/01/part-1-of-writing-your-own-net-based.html
Details in getting the list of packages and features included in the bundle: https://www.wrightfully.com/part-3-of-writing-your-own-net-based-installer-with-wix-context-data/
Details on using that data, along with the user's selection or existing install details, to set which packages/features are installed, removed or upgraded: https://www.wrightfully.com/2013/01/part-4-of-writing-your-own-net-based.html