How to add dependency on a Windows Service AFTER the service is installed

This can also be done via an elevated command prompt using the sc command. The syntax is: sc config [service name] depend= <Dependencies(separated by / (forward slash))> Note: There is a space after the equals sign, and there is not one before it. Warning: depend= parameter will overwrite existing dependencies list, not append. So for … Read more