How can I allow MSI features to be selected in a WiX burn bootstrapper?

匆匆过客 提交于 2019-12-03 05:36:40
BryanJ

If you want to display the features in a UI for the user to select then there are two options:

  1. Create a custom bootstrapper application using Burn to collect information from the user, and then pass that information to the msi when you launch it. Custom WiX Burn bootstrapper user interface? wix-burn-3-6-beta-custom-ui-examples

  2. If you have authored a UI into your MSI and you want Burn to display that UI in addition to the Burn UI, then in your MsiPackage, set DisplayInternalUI="yes".

Ciprian

You ca use the MsiProperty element to populate the ADDLOCAL property with the features you want installed by default.

NOTE: MsiProperty ADDLOCAL - Removed in Wix 4, warning and ignored in Wix 3.11

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!