ServiceInstaller.StartType Property
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 how and when this service is started.
public:
property System::ServiceProcess::ServiceStartMode StartType { System::ServiceProcess::ServiceStartMode get(); void set(System::ServiceProcess::ServiceStartMode value); };
public System.ServiceProcess.ServiceStartMode StartType { get; set; }
[System.ServiceProcess.ServiceProcessDescription("ServiceInstallerStartType")]
public System.ServiceProcess.ServiceStartMode StartType { get; set; }
member this.StartType : System.ServiceProcess.ServiceStartMode with get, set
[<System.ServiceProcess.ServiceProcessDescription("ServiceInstallerStartType")>]
member this.StartType : System.ServiceProcess.ServiceStartMode with get, set
Public Property StartType As ServiceStartMode
Property Value
A ServiceStartMode that represents the way the service is started. The default is Manual
, which specifies that the service will not automatically start after reboot.
- Attributes
Exceptions
The start mode is not a value of the ServiceStartMode enumeration.
Remarks
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.
Applies to
See also
.NET