Starting Services in a specific order

  • Thread starter Thread starter Greg
  • Start date Start date
G

Greg

How do I start a specific service before another
service? They are not dependant on each other, but I
need them to start in a certain order.
 
Make the services depend on one another through the registry:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\<ServiceName>

DependOnService REG_MULTI_SZ Service Names
 
Back
Top