WiX: How do I get the MSI's dialogs to show, when wrapped in Burn/EXE?

时光毁灭记忆、已成空白 提交于 2019-12-03 13:26:32
Dimiano

Vice versa: try supress WIX ExitDlg in the MSI and leave your BA dialog.

RESPECT4ALL

Just add the DisplayInternalUI tag.

<MsiPackage SourceFile = 'xxx' Id='xxx' Vital='yes'  DisplayInternalUI='yes'></MsiPackage>

Inexplicably, the thing seems to be working now. I cannot discern which of the multitude of permutations "fixed" it. The only thing that comes to mind is that the MSI project needs to be rebuilt every time, as well as the Bootstrapper Application (BA) that envelops it.

Now I need to suppress the "Setup Successful" dialog displayed by the BA. It is redundant, as the MSI dialog says the same thing.

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