RemoveExistingProducts 操作的自定义属性
执行 RemoveExistingProducts
操作时,MSI 将设置两个属性
- UPGRADINGProductCODE={...}
- REMOVE=ALL
如何为此操作添加自定义属性?
When the RemoveExistingProducts
action is executed, the MSI sets two properties
- UPGRADINGPRODUCTCODE={...}
- REMOVE=ALL
How to add a custom property for this action?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RemoveExistingProducts
是内置安装程序命令,您无法更改它。如果您想在此之后执行某些操作,则必须查找调用它的所有位置(可能在 InstallExecuteSequence 中)并调用您的自定义操作、设置属性或之后的任何操作。
RemoveExistingProducts
is a built-in installer command, you cannot change it.If you want to do something after this, you have to look for all places it is called (probably in InstallExecuteSequence) and call your Custom Action, set a property, or whatever after it.