ServiceStartMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the start mode of the service.
public enum class ServiceStartMode
public enum ServiceStartMode
type ServiceStartMode =
Public Enum ServiceStartMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Boot | 0 | Indicates that the service is a device driver started by the system loader. This value is valid only for device drivers. |
System | 1 | Indicates that the service is a device driver started by the |
Automatic | 2 | Indicates that the service is to be started (or was started) by the operating system, at system start-up. If an automatically started service depends on a manually started service, the manually started service is also started automatically at system startup. |
Manual | 3 | Indicates that the service is started only manually, by a user (using the Service Control Manager) or by an application. |
Disabled | 4 | Indicates that the service is disabled, so that it cannot be started by a user or application. |
Remarks
The ServiceStartMode is used by the service installer to indicate whether the new service should be disabled at system startup, whether the system should start the service automatically at system startup, or whether the service should be started manually by a user or application. It is also used by the ServiceController.StartType property to indicate how a particular service starts.