Service |
Member name | Value | Description |
---|---|---|
Stopped | 1 | The service is not running. This corresponds to the Win32 SERVICE_STOPPED constant, which is defined as 0x00000001. |
StartPending | 2 | The service is starting. This corresponds to the Win32 SERVICE_START_PENDING constant, which is defined as 0x00000002. |
StopPending | 3 | The service is stopping. This corresponds to the Win32 SERVICE_STOP_PENDING constant, which is defined as 0x00000003. |
Running | 4 | The service is running. This corresponds to the Win32 SERVICE_RUNNING constant, which is defined as 0x00000004. |
ContinuePending | 5 | The service continue is pending. This corresponds to the Win32 SERVICE_CONTINUE_PENDING constant, which is defined as 0x00000005. |
PausePending | 6 | The service pause is pending. This corresponds to the Win32 SERVICE_PAUSE_PENDING constant, which is defined as 0x00000006. |
Paused | 7 | The service is paused. This corresponds to the Win32 SERVICE_PAUSED constant, which is defined as 0x00000007. |