|
ServiceStartTypes Enumeration |
Creates a service object and adds it to the specified service control manager database.
CreateService function Namespace: Xcalibur.NativeMethods.V2.ServicesAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax [FlagsAttribute]
public enum ServiceStartTypes
<FlagsAttribute>
Public Enumeration ServiceStartTypes
[FlagsAttribute]
public enum class ServiceStartTypes
[<FlagsAttribute>]
type ServiceStartTypes
Members Member name | Value | Description |
---|
BootStart | 0 |
A device driver started by the system loader. This value is valid only for driver services.
|
SystemStart | 1 |
A device driver started by the IoInitSystem function. This value is valid only for driver
services.
|
AutoStart | 2 |
A service started automatically by the service control manager during system startup.
|
DemandStart | 3 |
A service started by the service control manager when a process calls the
function.
|
Disabled | 4 |
A service that cannot be started.
|
See Also