Is it possible to make a Windows service (third-party one, I don't control its code) to start only after a service I own?
I need that to connect to a device which is blocked by the third-party service.
Is it possible to make a Windows service (third-party one, I don't control its code) to start only after a service I own?
I need that to connect to a device which is blocked by the third-party service.
Yes, it is possible:
Look at the properties of the services to get the service names (not the display names. In the example below I have used the Smart Card Service, the service name is scardsvr
Then from an administrative command prompt use the command:
sc config scardsvr start= auto depend= "netlogon"