0
我想知道如何替换Wix上弹出窗口的消息错误。如何用弹出窗口(WIX)替换错误消息(2753)
我有一个安装程序有两个不同的功能,当我没有选择任何选项时出现错误消息: “安装程序遇到意外的错误安装此软件包,这可能表示此软件包有问题。错误代码是2753.“
<Feature Id="Complete" Title="App"
Display="expand" Level="1" AllowAdvertise='no' InstallDefault='local'>
<Feature Id="App1" Title="App1.exe" Level="1" AllowAdvertise='no' InstallDefault='local'>
<Condition Level="0">INSTALL_GUEST_FEATURES = 0</Condition>
<ComponentRef Id="App1Executable" />
</Feature>
<Feature Id="App2" Title="App2.exe" Level="1" AllowAdvertise='no' InstallDefault='local'>
<Condition Level="0">INSTALL_HOST_FEATURES = 0</Condition>
<ComponentRef Id="App2Executable" />
</Feature>
</Feature>
<UIRef Id="WixUI_FeatureTree" />
<UIRef Id="WixUI_ErrorProgressText" />
我可以将此消息替换为弹出窗口吗?
谢谢!