在其他服务之前加载服务
我有一个网络关键 Windows 7 服务。它必须在系统上任何与网络相关的服务之前启动,否则网络服务可能会失败。我的服务要求 Winsock 在运行时完全初始化。
如何强制 Windows 在适当的时间加载我的服务?即在 Winsock 可用后立即。
I have a network critical Windows 7 service. It must start before any network related service on the system, or that network service may fail. My service requires that Winsock is fully initialized by the time it runs.
How can I coerce Windows to load my service at the appropriate time? i.e. Immediately after Winsock is available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用了 MS Sysinternals 的
LoadOrder
实用程序。发现该组应该是“NetworkProvider”。另外,由于加载程序按字典顺序加载,因此我将进程命名为前缀“Z”,因此它将在“NetworkProvider”LoadOrderGroup
中最后加载。I used the
LoadOrder
utility by MS Sysinternals. Found out the group should be "NetworkProvider". Also, since the loader loads in lexicographical alphabetical order, I named my process prefixing "Z" so it will load last in the "NetworkProvider"LoadOrderGroup
.您可以使用 depends 选项使您的服务依赖于其他服务。要使其他服务依赖于您的服务,您需要设置它们的依赖关系。
You can make your service depend on other services using the depends option. To make other services dependent on your service, you'd need to set their dependencies.