c# – 哪些Windows服务确保网络连接?

前端之家收集整理的这篇文章主要介绍了c# – 哪些Windows服务确保网络连接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在做一个 Windows服务,启动时必须具有网络连接.代码在c#中,我设置的服务依赖于其他人
serviceInstaller.ServicesDependedOn = new string[] { "Tcpip" };

我可以看到在Windows服务管理器上正确输入了依赖关系,但是在重新启动后,我的服务无法启动,因为它无法连接到网络,主机获取IP后,服务正常启动.

我尝试使用“Tcpip”和“Dhcp”服务.哪个服务应该依赖?

服务需要网络连接,因为它的目的是通过ssh安装一个单元

谢谢!

解决方法

我们一直在做服务,依靠网络开始,依赖于“服务器”服务.其实际名称是“LanmanServer”.这对我们来说一直很好.如果你看它的描述,它说:

Supports file,print,and named-pipe sharing over the network for this computer. If this service is stopped,these functions will be unavailable. If this service is disabled,any services that explicitly depend on it will fail to start.

我们的想法是,如果计算机准备好做功能,那么网络必须启动.

原文链接:https://www.f2er.com/csharp/97282.html

猜你在找的C#相关文章