开发者

WIX: how to specify different text on exit dialog for repair and remove?

开发者 https://www.devze.com 2023-01-31 22:18 出处:网络
I\'m using WIX 3.0 After I install my product, I can run installer again and remove or repair my product.

I'm using WIX 3.0

After I install my product, I can run installer again and remove or repair my product.

How to specify different text on exit dialog for repair and remove?

I used "Installed" property, but it has the same value for repair and remove

Do you have any ideas?

开发者_如何学编程Thanks in advance


You'll have to modify the ExitDialog.wxs for this (taking it from WiX sources and including to your project).

Take ProgressDlg.wxs as an example. It contains several pairs of controls, prefixed with 'Text' and 'Title', for instance 'TextInstalling' and 'TitleInstalling'. These pairs of controls are located at the same positions on a dialog, but are conditioned differently. For instance, 'TextRemoving' and 'TitleRemoving' are shown when WixUI_InstallMode='Remove'. Hence, setting WixUI_InstallMode to 'Remove' at the beginning of uninstall shows "Removing files", etc. on a progress dialog.

You can use this technique for other dialogs as well.


Thanks for update, Yan.

My problem was not how to change some text, but how to know what action was performed, remove or repair.

I don't know if this is good solution, but I used custom action and set the all text I need in the properties. The custom action runs with condition $MyInstalledComponent=2, which means that component is removed and is TRUE only on remove, but not on repair

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号