ServiceController.ExecuteCommand Method
Executes a custom command on the service.
Namespace: System.ServiceProcess
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
Parameters
- command
- Type: System.Int32
An application-defined command flag that indicates which custom command to execute. The value must be between 128 and 256, inclusive.
| Exception | Condition |
|---|---|
| Win32Exception | An error occurred when accessing a system API. |
| InvalidOperationException | The service was not found. |
When you call ExecuteCommand, the status of the service does not change. If the service was started, the status remains Running. If the service was stopped, the status remains Stopped, and so on. To process the custom command, the service must override the OnCustomCommand method and provide a handler for the command identified by the command parameter.
The following code example shows the use of the ServiceController.ExecuteCommand(Int32) method to execute custom commands in the SimpleService service example. See the ServiceBase class for the sample code for the SimpleService service.
using System; using System.ServiceProcess; namespace test_exec_cmnd { class Program { private enum SimpleServiceCustomCommands { StopWorker = 128, RestartWorker, CheckWorker }; static void Main(string[] args) { ServiceController myService = new ServiceController("SimpleService"); myService.ExecuteCommand((int)SimpleServiceCustomCommands.StopWorker); myService.ExecuteCommand((int)SimpleServiceCustomCommands.RestartWorker); myService.ExecuteCommand((int)SimpleServiceCustomCommands.CheckWorker); } } }
- ServiceControllerPermission
for controlling services on the computer. Associated enumeration: ServiceControllerPermissionAccess.Control
- SecurityPermission
for unrestricted access to service information. Associated enumeration: PermissionState.Unrestricted
- 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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.