如何在 WiX 中设置具有依赖关系的条件?
我正在制作一个安装程序,它需要读取注册表项并获取一个值,然后使用该值访问另一个注册表,然后获取安装目录。 如果出现上述任何情况,安装将停止。
如何设定一个依赖另一个的条件?
谢谢。
I am making an installer, which need read a registry key and get a value, then use this value to access another registry then get the INSTALL dir.
Any condition mentioned above will stop the installation if fails.
How to set such conditions that one is dependent on the other?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用RegistrySearch,然后使用RegistrySearch 结果中的Property 在Product 元素中使用Condition 元素。
Use RegistrySearch then a Condition element in the Product element using the Property from the result of the RegistrySearch.