Wix3可以检查服务是否存在吗?
Wix 3 是否有内置方法来检查服务是否存在?我能想到的最接近的猜测是使用 ServiceConfig 并尝试检测故障。
Does Wix 3 have a built in way to just check whether a service exists? The closest guess I can come up with is using ServiceConfig and trying to detect a failure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应用安全公司。社区 MSI 扩展具有 Service_Exists 自定义操作。
http://msiext.codeplex.com
在线文档:
http://code.dblock.org/Source/msiext/1.2/Docs/_custom_actions_2_system_tools_2_service_impl_8h.html#a6fdcddc7b04a310a368c08726d3be6b3
如果服务存在,则 SERVICE_EXISTS 设置为“1”,否则设置为“0”。
The AppSecInc. Community MSI Extensions has a Service_Exists custom action.
http://msiext.codeplex.com
Online Documentation:
http://code.dblock.org/Source/msiext/1.2/Docs/_custom_actions_2_system_tools_2_service_impl_8h.html#a6fdcddc7b04a310a368c08726d3be6b3
SERVICE_EXISTS is set to "1" if service exists, "0" otherwise.