ServiceStartModeEx Enumeration

Specifies the start mode of a service.

Definition

Namespace: DevCase.Core.Windows.Servicing
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum ServiceStartModeEx

Members

Undefinied 0 The service has not a start mode defined.

Since a service should have a start mode defined, this means an error occured retrieving the start mode.

AutomaticDelayed 1 The service is to be started (or was started) by the operating system, at system start-up.

The service is started after other auto-start services are started plus a short delay.

Automatic 2 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 The service is started only manually, by a user (using the Service Control Manager) or by an application.
Disabled 4 The service is disabled, so that it cannot be started by a user or application.

See Also