ServiceController Class
Represents a Windows service and allows you to connect to a running or stopped service, manipulate it, or get information about it.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
System::MarshalByRefObject
System.ComponentModel::Component
System.ServiceProcess::ServiceController
| Name | Description | |
|---|---|---|
![]() | ServiceController() | Initializes a new instance of the ServiceController class that is not associated with a specific service. |
![]() | ServiceController(String^) | Initializes a new instance of the ServiceController class that is associated with an existing service on the local computer. |
![]() | ServiceController(String^, String^) | Initializes a new instance of the ServiceController class that is associated with an existing service on the specified computer. |
| Name | Description | |
|---|---|---|
![]() | CanPauseAndContinue | Gets a value indicating whether the service can be paused and resumed. |
![]() | CanRaiseEvents | Gets a value indicating whether the component can raise an event.(Inherited from Component.) |
![]() | CanShutdown | Gets a value indicating whether the service should be notified when the system is shutting down. |
![]() | CanStop | Gets a value indicating whether the service can be stopped after it has started. |
![]() | Container | Gets the IContainer that contains the Component.(Inherited from Component.) |
![]() | DependentServices | Gets the set of services that depends on the service associated with this ServiceController instance. |
![]() | DesignMode | |
![]() | DisplayName | Gets or sets a friendly name for the service. |
![]() | Events | |
![]() | MachineName | Gets or sets the name of the computer on which this service resides. |
![]() | ServiceHandle | Gets the handle for the service. |
![]() | ServiceName | Gets or sets the name that identifies the service that this instance references. |
![]() | ServicesDependedOn | The set of services that this service depends on. |
![]() | ServiceType | Gets the type of service that this object references. |
![]() | Site | |
![]() | StartType | Gets a value that indicates how the service represented by the ServiceController object starts. |
![]() | Status | Gets the status of the service that is referenced by this instance. |
| Name | Description | |
|---|---|---|
![]() | Close() | Disconnects this ServiceController instance from the service and frees all the resources that the instance allocated. |
![]() | Continue() | Continues a service after it has been paused. |
![]() | CreateObjRef(Type^) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | Dispose() | |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the ServiceController and optionally releases the managed resources. (Overrides Component::Dispose(Boolean).) |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | ExecuteCommand(Int32) | Executes a custom command on the service. |
![]() | Finalize() | |
![]() ![]() | GetDevices() | Retrieves the device driver services on the local computer. |
![]() ![]() | GetDevices(String^) | Retrieves the device driver services on the specified computer. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetService(Type^) | |
![]() ![]() | GetServices() | Retrieves all the services on the local computer, except for the device driver services. |
![]() ![]() | GetServices(String^) | Retrieves all the services on the specified computer, except for the device driver services. |
![]() | GetType() | |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | MemberwiseClone() | |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object.(Inherited from MarshalByRefObject.) |
![]() | Pause() | Suspends a service's operation. |
![]() | Refresh() | Refreshes property values by resetting the properties to their current values. |
![]() | Start() | Starts the service, passing no arguments. |
![]() | Start(array<String^>^) | Starts a service, passing the specified arguments. |
![]() | Stop() | Stops this service and any services that are dependent on this service. |
![]() | ToString() | |
![]() | WaitForStatus(ServiceControllerStatus) | Infinitely waits for the service to reach the specified status. |
![]() | WaitForStatus(ServiceControllerStatus, TimeSpan) | Waits for the service to reach the specified status or for the specified time-out to expire. |
You can use the ServiceController class to connect to and control the behavior of existing services. When you create an instance of the ServiceController class, you set its properties so it interacts with a specific Windows service. You can then use the class to start, stop, and otherwise manipulate the service.
You will most likely use the ServiceController component in an administrative capacity. For example, you could create a Windows or Web application that sends custom commands to a service through the ServiceController instance. This would be useful, because the Service Control Manager (SCM) Microsoft Management Console snap-in does not support custom commands.
After you create an instance of ServiceController, you must set two properties on it to identify the service with which it interacts: the computer name and the name of the service you want to control.
Note |
|---|
By default, MachineName is set to the local computer, so you do not need to change it unless you want to set the instance to point to another computer. |
Generally, the service author writes code that customizes the action associated with a specific command. For example, a service can contain code to respond to an ServiceBase::OnPause command. In that case, the custom processing for the Pause task runs before the system pauses the service.
The set of commands a service can process depends on its properties; for example, you can set the CanStop property for a service to false. This setting renders the Stop command unavailable on that particular service; it prevents you from stopping the service from the SCM by disabling the necessary button. If you try to stop the service from your code, the system raises an error and displays the error message "Failed to stop servicename."
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.






