 | ServicesStartModeEnum Enumeration |
Represents the startup mode of a Windows service.
Namespace: DoubleTake.Web.ModelsAssembly: DoubleTake.Management.Web.Client (in DoubleTake.Management.Web.Client.dll) Version: 8.1.0.599 (8.1.0.599)
Syntaxpublic enum ServicesStartModeEnum
Public Enumeration ServicesStartModeEnum
public enum class ServicesStartModeEnum
type ServicesStartModeEnum
Members
| Member name | Value | Description |
---|
| Boot | 0 |
Indicates that the device driver is started by the operating system loader.
|
| System | 1 |
Indicates that the device driver is started by the operating system initialization process.
|
| Auto | 2 |
Indicates that the service is started automatically by the Service Control Manager during system startup.
|
| Manual | 3 |
Indicates that the service is started by the Service Control Manager upon user request.
|
| Disabled | 4 |
Indicates that the service cannot be started.
|
| Unknown | 5 |
Indicates that WMI was unable to determine the start mode of the service.
This is undocumented, but we have seen cases where this caused problems.
|
See Also