I want to write a console or Click Once WinForms app that will programmatically stop and/or start a windows service on a remote box.
Both boxes are running .NET 3.5 - what .NET API's are available to accomplish this?
|
1
|
I want to write a console or Click Once WinForms app that will programmatically stop and/or start a windows service on a remote box. Both boxes are running .NET 3.5 - what .NET API's are available to accomplish this?
|
|||
|
|
|
|
in C#:
|
||
|
|
|
|
if you need to get the name of the Service: run this from the command line: sc query You will see for example, that SQL Server's service name is 'MSSQL$SQLEXPRESS'. So to stop the SQL Server service in C#:
|
|||
|
|
|
|
You can also do this from a command console using the
Use
to get a list of service names. The option Example
|
|||
|
|
|
|
If you don't want to code it yourself, PsService by Microsoft/Sysinternals is a command line tool that does what you want. |
||
|
|
|
|
You need to have permission to administer the services on the remote box. As Mehrdad says, you can also use WMI. Both methods work for start and stop, but WMI requires more coding and will give you more access to other resources |
|||
|
|
|
|
You can use For this problem, however, I suggest you to use the easier to use |
||
|
|