Starting Window Services in a certain order

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a customized application that I am working with, I need to make the
services that correspond with the application start in a certain order. I
also need to make some Windows services start after the Customized
application services start. I need to know how to do this whether it is done
in the registry which I am assuming but where?

TJ Schlouski
 
Isn't there a Dependencies setting you can access through the
Services--Properties--Dependencies part of Admin Tools?
 
John you are correct you can look to see what are the dependencies of that
certain service. But I need to make the dependencies manually.
TJ
 
How to delay loading of specific services
http://support.microsoft.com/kb/193888

Configuring Service start up order in WinNT.
http://www.jsiinc.com/suba/tip0000/rh0069.htm


--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
shlugi said:
I have a customized application that I am working with, I need to make the
services that correspond with the application start in a certain order. I
also need to make some Windows services start after the Customized
application services start. I need to know how to do this whether it is
done in the registry which I am assuming but where?

TJ Schlouski

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
The info helped out a lot now all I need to do is try to figure out how to
force service boot in a certain order. Any Suggestions?
 
Services can be loaded simultaneously, but dependent on their dependencies.

<quote>
Step 5 - Services Load. This step begins with the starting of the Session
Manager (Smss.exe). It will run the programs listed in its BootExecute
Registry entry, as well as starting the required subsystems. The Win32
subsystem will then start Winlogon.exe, which starts the Local Security
Administration (Lsass.exe), and the Ctrl + Alt + Delete window appears. The
Service Controller (Screg.exe) will check the Registry for services with a
start value of 0x2, and will load them. Services can be loaded
simultaneously, but dependent on their dependencies. Services with start
values of 0x3 are started manually, and services with start values of 0x4
are disabled.
<quote>
from...
The Windows 2000 Boot Process
http://windows.about.com/od/tipsarchive/l/aa000716a.htm

See also...
Understanding the Startup Process
http://www.microsoft.com/technet/prodtechnol/winxppro/reskit/c29621675.mspx#EWB

What Happens When You Start Your Computer
http://www.microsoft.com/technet/archive/ntwrkstn/reskit/booting.mspx

Ctrl + F for service

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In
 
Back
Top