如何以编程方式将服务依赖项添加到已安装的 Window 服务?
如何以编程方式将服务依赖项添加到已安装的 Window 服务?
如果有人建议通过 System.Management 命名空间使用 WMI 的解决方案,这将非常有帮助。我可以设置服务的依赖项属性是什么?
How can I add programatically service dependencies to an installed Window service ?
It would really helpful, If someone suggest solution using WMI through the System.Management
namespace . What is property for dependencies on which I can set services?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用更改 Win32_Service 类的方法。最后一个参数是一个以双 NULL 结尾的依赖项列表。
You want to use the Change method of the Win32_Service class. The last parameter is a doubly-NULL-terminated list of dependencies.