System.ServiceProcess.ServiceController 8.0.0

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.ServiceProcess.ServiceController --version 8.0.0                
NuGet\Install-Package System.ServiceProcess.ServiceController -Version 8.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.ServiceProcess.ServiceController --version 8.0.0                
#r "nuget: System.ServiceProcess.ServiceController, 8.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install System.ServiceProcess.ServiceController as a Cake Addin
#addin nuget:?package=System.ServiceProcess.ServiceController&version=8.0.0

// Install System.ServiceProcess.ServiceController as a Cake Tool
#tool nuget:?package=System.ServiceProcess.ServiceController&version=8.0.0                

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 Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (176)

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.VisualStudio.Services.Client

Integrate with Azure DevOps Server 2022 and Azure DevOps Services from desktop-based, ASP.NET, and other Windows applications. Provides access to shared platform services such as account, profile, identity, security, and more via public REST APIs.

Microsoft.Web.Administration

This package contains the .NET Core version of the Microsoft Web Administration assembly.

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/f5084525411d53b81d9950b68616117750b674d4

GitHub repositories (74)

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
Jackett/Jackett
API Support for your favorite torrent trackers
winsw/winsw
A wrapper executable that can run any executable as a Windows service, in a permissive license.
Version Downloads Last updated
9.0.0-preview.6.24327.7 4,534 7/9/2024
9.0.0-preview.5.24306.7 5,721 6/11/2024
9.0.0-preview.4.24266.19 3,328 5/21/2024
9.0.0-preview.3.24172.9 8,636 4/11/2024
9.0.0-preview.2.24128.5 3,748 3/12/2024
9.0.0-preview.1.24080.9 11,008 2/13/2024
8.0.0 7,151,456 11/14/2023
8.0.0-rc.2.23479.6 26,564 10/10/2023
8.0.0-rc.1.23419.4 22,859 9/12/2023
8.0.0-preview.7.23375.6 23,403 8/8/2023
8.0.0-preview.6.23329.7 11,136 7/11/2023
8.0.0-preview.5.23280.8 6,447 6/13/2023
8.0.0-preview.4.23259.5 13,972 5/16/2023
8.0.0-preview.3.23174.8 21,932 4/11/2023
8.0.0-preview.2.23128.3 19,371 3/14/2023
8.0.0-preview.1.23110.8 13,228 2/21/2023
7.0.1 5,434,109 6/13/2023
7.0.0 6,774,581 11/7/2022
7.0.0-rc.2.22472.3 14,085 10/11/2022
7.0.0-rc.1.22426.10 64,595 9/14/2022
7.0.0-preview.7.22375.6 12,442 8/9/2022
7.0.0-preview.6.22324.4 14,714 7/12/2022
7.0.0-preview.5.22301.12 4,414 6/14/2022
7.0.0-preview.4.22229.4 13,842 5/10/2022
7.0.0-preview.3.22175.4 12,341 4/13/2022
7.0.0-preview.2.22152.2 15,902 3/14/2022
7.0.0-preview.1.22076.8 4,702 2/17/2022
6.0.1 2,607,194 6/13/2023
6.0.0 25,241,621 11/8/2021
6.0.0-rc.2.21480.5 16,816 10/12/2021
6.0.0-rc.1.21451.13 11,810 9/14/2021
6.0.0-preview.7.21377.19 5,607 8/10/2021
6.0.0-preview.6.21352.12 9,900 7/14/2021
6.0.0-preview.5.21301.5 7,671 6/15/2021
6.0.0-preview.4.21253.7 22,988 5/24/2021
6.0.0-preview.3.21201.4 16,851 4/8/2021
6.0.0-preview.2.21154.6 12,270 3/11/2021
6.0.0-preview.1.21102.12 16,869 2/12/2021
5.0.0 30,805,449 11/9/2020
5.0.0-rc.2.20475.5 27,820 10/13/2020
5.0.0-rc.1.20451.14 8,366 9/14/2020
5.0.0-preview.8.20407.11 11,806 8/25/2020
5.0.0-preview.7.20364.11 21,747 7/21/2020
5.0.0-preview.6.20305.6 9,968 6/25/2020
5.0.0-preview.5.20278.1 5,926 6/10/2020
5.0.0-preview.4.20251.6 15,193 5/18/2020
5.0.0-preview.3.20214.6 34,232 4/23/2020
5.0.0-preview.2.20160.6 17,723 4/2/2020
5.0.0-preview.1.20120.5 3,729 3/16/2020
4.7.0 23,760,039 12/3/2019
4.7.0-preview3.19551.4 6,873 11/13/2019
4.7.0-preview2.19523.17 14,286 11/1/2019
4.7.0-preview1.19504.10 13,086 10/15/2019
4.6.0 3,919,994 9/23/2019
4.6.0-rc1.19456.4 6,220 9/16/2019
4.6.0-preview9.19421.4 9,272 9/4/2019
4.6.0-preview9.19416.11 498 9/4/2019
4.6.0-preview8.19405.3 12,735 8/13/2019
4.6.0-preview7.19362.9 15,585 7/23/2019
4.6.0-preview6.19303.8 44,674 6/12/2019
4.6.0-preview6.19264.9 515 9/4/2019
4.6.0-preview5.19224.8 28,849 5/6/2019
4.6.0-preview4.19212.13 3,526 4/18/2019
4.6.0-preview3.19128.7 9,498 3/6/2019
4.6.0-preview.19073.11 18,556 1/29/2019
4.6.0-preview.18571.3 15,555 12/3/2018
4.5.0 19,761,563 5/29/2018
4.5.0-rc1 52,727 5/6/2018
4.5.0-preview2-26406-04 24,965 4/10/2018
4.5.0-preview1-26216-02 34,031 2/26/2018
4.5.0-preview1-25914-04 294,957 11/15/2017
4.4.1 247,972 12/12/2017
4.4.0 713,013 8/11/2017
4.4.0-preview2-25405-01 2,393 6/27/2017
4.4.0-preview1-25305-02 5,533 5/9/2017
4.3.0 400,455 11/15/2016
4.3.0-preview1-24530-04 13,034 10/24/2016
4.1.0 8,215,048 6/27/2016
4.1.0-rc2-24027 2,848 5/16/2016
4.1.0-beta-23516 3,474 11/18/2015
4.1.0-beta-23409 2,097 10/15/2015
4.1.0-beta-23225 2,086 9/2/2015
4.0.0-beta-23123 2,714 7/29/2015
4.0.0-beta-23109 2,190 7/27/2015
4.0.0-beta-23019 2,212 6/30/2015
4.0.0-beta-22816 2,481 4/24/2015
4.0.0-beta-22605 2,615 2/13/2015
4.0.0-beta-22416 2,616 1/16/2015