UPGRADINGPRODUCTCODE condition not working in wixui_install.wxs in library

后端 未结 1 1605
离开以前
离开以前 2021-01-21 18:50

UPGRADINGPRODUCTCODE condition not working in wixui_install.wxs in library

I want to change the value of next button to respective dlg if first time install and for maj

1条回答
  •  不要未来只要你来
    2021-01-21 19:28

    UPGRADINGPRODUCTCODE is set only for the hidden uninstallation of a package found via the Upgrade table and FindRelatedProducts/RemoveExistingProducts. This does not show any UI, so conditioning control events off of this property will not be helpful.

    By contrast UPGRADINGPRODUCTCODE is not set for the newer installation. If you want to condition your control events on whether a previous version will be uninstalled, you must reference the properties specified in the ActionProperty of each record in the Upgrade table.

    0 讨论(0)
提交回复
热议问题