RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SvcMgr.TStartType Enumeration

TStartType indicates how a service starts up.

Pascal
TStartType = (
  stBoot,
  stSystem,
  stAuto,
  stManual,
  stDisabled
);
C++
enum TStartType {
  stBoot,
  stSystem,
  stAuto,
  stManual,
  stDisabled
};

The following table lists the possible values of TStartType:

StartType value 
Service is started 
stBoot(used only when ServiceType is not stWin32)  
by the operating system loader  
stSystem(used only when ServiceType is not stWin32)  
after boot systems are initialized  
stAuto  
automatically during system startup  
stManual  
when a process calls the Windows StartService function  
stDisabled  
the service can't be started except by an administrator  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!