ServiceInstaller.StartType Property
Indicates how and when this service is started.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
[ServiceProcessDescriptionAttribute("ServiceInstallerStartType")] public ServiceStartMode StartType { get; set; }
Property Value
Type: System.ServiceProcess.ServiceStartModeA ServiceStartMode that represents the way the service is started. The default is Manual, which specifies that the service will not automatically start after reboot.
| Exception | Condition |
|---|---|
| InvalidEnumArgumentException |
The start mode is not a value of the ServiceStartMode enumeration. |
Set the StartType to specify either that the service be started automatically after reboot or that a user must manually start the service. A service can also be disabled, specifying that it cannot be started, either manually or programmatically, until it is enabled.
You cannot change ServiceInstaller property values after installation. To change the StartType, you either have to uninstall and reinstall your service, or manually change the setting using the Service Control Manager.
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.