System.ServiceProcess.ServiceController
9.0.3
Prefix Reserved
See the version list below for details.
dotnet add package System.ServiceProcess.ServiceController --version 9.0.3
NuGet\Install-Package System.ServiceProcess.ServiceController -Version 9.0.3
<PackageReference Include="System.ServiceProcess.ServiceController" Version="9.0.3" />
paket add System.ServiceProcess.ServiceController --version 9.0.3
#r "nuget: System.ServiceProcess.ServiceController, 9.0.3"
// Install System.ServiceProcess.ServiceController as a Cake Addin #addin nuget:?package=System.ServiceProcess.ServiceController&version=9.0.3 // Install System.ServiceProcess.ServiceController as a Cake Tool #tool nuget:?package=System.ServiceProcess.ServiceController&version=9.0.3
About
Provides the System.ServiceProcess.ServiceController API, which allows to connect to a Windows service, manipulate it, or get information about it. Not supported on other platforms.
Key Features
- Retrieve information from Windows services
- Connect to and manipulate Windows services (start, pause, stop or other operations)
How to Use
Retrieve Windows service information
using System.ServiceProcess;
// Loop through all installed Windows services and print the name, status and display name.
foreach (ServiceController serviceController in ServiceController.GetServices())
{
Console.WriteLine("Name: " + serviceController.ServiceName);
Console.WriteLine("Status: " + serviceController.Status.ToString());
Console.WriteLine("Display name: " + serviceController.DisplayName);
}
// Loop through all installed device driver services
foreach (ServiceController serviceController in ServiceController.GetDevices())
{
Console.WriteLine("Name: " + serviceController.ServiceName);
Console.WriteLine("Status: " + serviceController.Status.ToString());
Console.WriteLine("Display name: " + serviceController.DisplayName);
}
Manipulate a Windows service
using System.ServiceProcess;
ServiceController service = new("TestServiceName");
if (service.CanStop && service.Status != ServiceControllerStatus.Stopped && service.Status != ServiceControllerStatus.StopPending)
{
service.Stop();
}
Main Types
The main types provided by this library are:
System.ServiceProcess.ServiceController
System.ServiceProcess.ServiceControllerStatus
System.ServiceProcess.ServiceType
Additional Documentation
Feedback & Contributing
System.ServiceProcess.ServiceController is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- System.Diagnostics.EventLog (>= 9.0.3)
-
.NETStandard 2.0
- System.Diagnostics.EventLog (>= 9.0.3)
-
net8.0
- System.Diagnostics.EventLog (>= 9.0.3)
-
net9.0
- System.Diagnostics.EventLog (>= 9.0.3)
NuGet packages (185)
Showing the top 5 NuGet packages that depend on System.ServiceProcess.ServiceController:
Package | Downloads |
---|---|
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. |
|
Microsoft.Extensions.Hosting.WindowsServices
.NET hosting infrastructure for Windows Services. |
|
Microsoft.Web.Administration
This package contains the .NET Core version of the Microsoft Web Administration assembly. |
|
AspNetCore.HealthChecks.System
HealthChecks.System is the system health check package. |
|
Microsoft.AspNetCore.Hosting.WindowsServices
ASP.NET Core hosting infrastructure and startup logic for web applications running within a Windows service. This package was built from the source code at https://github.com/dotnet/aspnetcore/tree/b225d30209cf027c80b741d04efe1c54f2431b3c |
GitHub repositories (80)
Showing the top 5 popular GitHub repositories that depend on System.ServiceProcess.ServiceController:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
PowerShell/PowerShell
PowerShell for every system!
|
|
netchx/netch
A simple proxy client
|
|
Klocman/Bulk-Crap-Uninstaller
Remove large amounts of unwanted applications quickly.
|
|
Jackett/Jackett
API Support for your favorite torrent trackers
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.1.25080.5 | 1,853 | 2/25/2025 | |
9.0.3 | 3,572 | 3/11/2025 | |
9.0.2 | 269,839 | 2/11/2025 | |
9.0.1 | 458,836 | 1/14/2025 | |
9.0.0 | 915,422 | 11/12/2024 | |
9.0.0-rc.2.24473.5 | 28,408 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 17,799 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 10,852 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 17,601 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 6,949 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 5,859 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 14,570 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 5,653 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 24,464 | 2/13/2024 | |
8.0.1 | 3,533,260 | 10/8/2024 | |
8.0.0 | 18,048,429 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 38,760 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 29,680 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 28,782 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 19,868 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 7,484 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 16,750 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 23,173 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 22,155 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 14,853 | 2/21/2023 | |
7.0.1 | 6,915,175 | 6/13/2023 | |
7.0.0 | 7,715,491 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 15,864 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 66,034 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 12,929 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 16,291 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 4,843 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 15,014 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 14,118 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 16,360 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 4,899 | 2/17/2022 | |
6.0.1 | 4,144,021 | 6/13/2023 | |
6.0.0 | 28,952,543 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 17,067 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 12,116 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 6,052 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 10,507 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 7,884 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 23,540 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 18,899 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 12,528 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 19,624 | 2/12/2021 | |
5.0.0 | 33,778,739 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 38,012 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 8,621 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 14,273 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 22,038 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 10,573 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 6,123 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 15,547 | 5/18/2020 | |
5.0.0-preview.3.20214.6 | 39,162 | 4/23/2020 | |
5.0.0-preview.2.20160.6 | 19,911 | 4/2/2020 | |
5.0.0-preview.1.20120.5 | 3,882 | 3/16/2020 | |
4.7.0 | 26,651,236 | 12/3/2019 | |
4.7.0-preview3.19551.4 | 7,118 | 11/13/2019 | |
4.7.0-preview2.19523.17 | 15,685 | 11/1/2019 | |
4.7.0-preview1.19504.10 | 13,528 | 10/15/2019 | |
4.6.0 | 4,151,349 | 9/23/2019 | |
4.6.0-rc1.19456.4 | 6,468 | 9/16/2019 | |
4.6.0-preview9.19421.4 | 9,430 | 9/4/2019 | |
4.6.0-preview9.19416.11 | 622 | 9/4/2019 | |
4.6.0-preview8.19405.3 | 13,215 | 8/13/2019 | |
4.6.0-preview7.19362.9 | 15,790 | 7/23/2019 | |
4.6.0-preview6.19303.8 | 45,188 | 6/12/2019 | |
4.6.0-preview6.19264.9 | 627 | 9/4/2019 | |
4.6.0-preview5.19224.8 | 29,955 | 5/6/2019 | |
4.6.0-preview4.19212.13 | 3,746 | 4/18/2019 | |
4.6.0-preview3.19128.7 | 10,270 | 3/6/2019 | |
4.6.0-preview.19073.11 | 19,332 | 1/29/2019 | |
4.6.0-preview.18571.3 | 16,541 | 12/3/2018 | |
4.5.0 | 21,403,115 | 5/29/2018 | |
4.5.0-rc1 | 55,335 | 5/6/2018 | |
4.5.0-preview2-26406-04 | 26,307 | 4/10/2018 | |
4.5.0-preview1-26216-02 | 35,173 | 2/26/2018 | |
4.5.0-preview1-25914-04 | 300,986 | 11/15/2017 | |
4.4.1 | 257,070 | 12/12/2017 | |
4.4.0 | 763,223 | 8/11/2017 | |
4.4.0-preview2-25405-01 | 2,570 | 6/27/2017 | |
4.4.0-preview1-25305-02 | 5,696 | 5/9/2017 | |
4.3.0 | 407,366 | 11/15/2016 | |
4.3.0-preview1-24530-04 | 13,198 | 10/24/2016 | |
4.1.0 | 9,729,219 | 6/27/2016 | |
4.1.0-rc2-24027 | 3,021 | 5/16/2016 | |
4.1.0-beta-23516 | 3,651 | 11/18/2015 | |
4.1.0-beta-23409 | 2,269 | 10/15/2015 | |
4.1.0-beta-23225 | 2,259 | 9/2/2015 | |
4.0.0-beta-23123 | 3,168 | 7/29/2015 | |
4.0.0-beta-23109 | 2,365 | 7/27/2015 | |
4.0.0-beta-23019 | 2,422 | 6/30/2015 | |
4.0.0-beta-22816 | 2,691 | 4/24/2015 | |
4.0.0-beta-22605 | 2,833 | 2/13/2015 | |
4.0.0-beta-22416 | 2,869 | 1/16/2015 |