ServiceController.ExecuteCommand Method
Executes a custom command on the service.
Assembly: System.ServiceProcess (in System.ServiceProcess.dll)
| 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 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.