Windows Service Startup Modes
When you startup your Windows Services that are written in .NET, you can
specify three startup modes:
- Automatic. When the system starts up, the service will startup as if
it is set to Automatic in the Services applet.
- Manual. When the system starts up, the service will startup as
if it is set to Manual in the Services applet.
- Disabled. When the system starts up, the service will
not startup as if the service is set in the Disabled mode in the Services
applet.
These modes are provided by the enum System.ServiceProcess.ServiceStartMode.
Wally