Service\_SetStartMode
Description
Section titled “Description”Sets the start mode for a specified service
Valid StartModes are:
- Boot: Device driver started by the operating system loader.
- System: Device driver started by the *IoInitSystem method. This value is valid only for driver services.
- Automatic: Service to be started automatically by the service control manager during system startup.
- AutomaticDelayed: Service to be started automatically and delayed by the service control manager during system startup.
- Manual: Service to be started by the service control manager when a process calls the *StartService method.
- Disabled: Service that can no longer be started.
Syntax
Section titled “Syntax”Service_SetStartMode(sServiceName, sStartMode) As Boolean
Parameters
Section titled “Parameters”sServiceName (String)
Name of service
sStartMode (String)
Start mode. Service_SetStartMode
Example
Section titled “Example”VBScript
If bStatus Then bStatus = Service_SetStartMode("Service", SSM_Disabled)Related functions
Section titled “Related functions”Service_Create Service_Exist Service_Start