which Windows service ensures network connectivity?

c#, windows-services

Solution

We have been making our services, that depend on the network begin started, dependent on the "Server" service. Its actual name is "LanmanServer". This has been working ok for us. If you look at its description it states:

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.

Our thinking is that if the computer is ready to do thoes functions, then the network has to be started.

Problem

I am doing a windows service that must have network connectivity when it starts. Code is in c# and I set the service dependent from others with ``` serviceInstaller.ServicesDependedOn = new string[] { "Tcpip" }; ``` I can see dependency correctly entered on windows service manager, but after reboot my service fails to start because it can't connect to network, after host gets an IP the service starts correctly. I tried with "Tcpip" and "Dhcp" services. Which service should it depend on? service needs network connectivity since its purpose is to mount a unit through ssh thanks!

Original source