System.ServiceProcess.ServiceController 10.0.0-preview.2.25163.2

Prefix Reserved
This is a prerelease version of System.ServiceProcess.ServiceController.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.ServiceProcess.ServiceController --version 10.0.0-preview.2.25163.2
                    
NuGet\Install-Package System.ServiceProcess.ServiceController -Version 10.0.0-preview.2.25163.2
                    
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="10.0.0-preview.2.25163.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.ServiceProcess.ServiceController" Version="10.0.0-preview.2.25163.2" />
                    
Directory.Packages.props
<PackageReference Include="System.ServiceProcess.ServiceController" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.ServiceProcess.ServiceController --version 10.0.0-preview.2.25163.2
                    
#r "nuget: System.ServiceProcess.ServiceController, 10.0.0-preview.2.25163.2"
                    
#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.
#addin nuget:?package=System.ServiceProcess.ServiceController&version=10.0.0-preview.2.25163.2&prerelease
                    
Install System.ServiceProcess.ServiceController as a Cake Addin
#tool nuget:?package=System.ServiceProcess.ServiceController&version=10.0.0-preview.2.25163.2&prerelease
                    
Install System.ServiceProcess.ServiceController as a Cake Tool

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 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.  net10.0 is compatible. 
.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 (181)

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

GitHub repositories (82)

Showing the top 20 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
winsw/winsw
A wrapper executable that can run any executable as a Windows service, in a permissive license.
duplicati/duplicati
Store securely encrypted backups in the cloud!
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
stride3d/stride
Stride (formerly Xenko), a free and open-source cross-platform C# game engine.
BartoszCichecki/LenovoLegionToolkit
Lightweight Lenovo Vantage and Hotkeys replacement for Lenovo Legion laptops.
microsoft/VFSForGit
Virtual File System for Git: Enable Git at Enterprise Scale
actions/runner
The Runner for GitHub Actions :rocket:
TechnitiumSoftware/DnsServer
Technitium DNS Server
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
Prowlarr/Prowlarr
Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps, supporting management of both Torrent Trackers and Usenet Indexers.
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
ravendb/ravendb
ACID Document Database
Topshelf/Topshelf
An easy service hosting framework for building Windows services using .NET
Version Downloads Last updated
10.0.0-preview.3.25171.5 346 2 days ago
10.0.0-preview.2.25163.2 3,890 25 days ago
10.0.0-preview.1.25080.5 3,822 2 months ago
9.0.4 25,998 4 days ago
9.0.3 332,975 a month ago
9.0.2 446,898 2 months ago
9.0.1 633,173 3 months ago
9.0.0 1,127,095 5 months ago
9.0.0-rc.2.24473.5 29,897 6 months ago
9.0.0-rc.1.24431.7 19,371 7 months ago
9.0.0-preview.7.24405.7 11,106 8 months ago
9.0.0-preview.6.24327.7 18,026 9 months ago
9.0.0-preview.5.24306.7 7,117 6/11/2024
9.0.0-preview.4.24266.19 6,347 5/21/2024
9.0.0-preview.3.24172.9 14,756 4/11/2024
9.0.0-preview.2.24128.5 6,123 3/12/2024
9.0.0-preview.1.24080.9 27,567 2/13/2024
8.0.1 4,416,841 6 months ago
8.0.0 19,375,263 11/14/2023
8.0.0-rc.2.23479.6 39,669 10/10/2023
8.0.0-rc.1.23419.4 30,491 9/12/2023
8.0.0-preview.7.23375.6 29,189 8/8/2023
8.0.0-preview.6.23329.7 21,040 7/11/2023
8.0.0-preview.5.23280.8 7,529 6/13/2023
8.0.0-preview.4.23259.5 17,033 5/16/2023
8.0.0-preview.3.23174.8 23,292 4/11/2023
8.0.0-preview.2.23128.3 22,580 3/14/2023
8.0.0-preview.1.23110.8 14,935 2/21/2023
7.0.1 7,126,895 6/13/2023
7.0.0 7,833,271 11/7/2022
7.0.0-rc.2.22472.3 15,940 10/11/2022
7.0.0-rc.1.22426.10 66,334 9/14/2022
7.0.0-preview.7.22375.6 12,973 8/9/2022
7.0.0-preview.6.22324.4 16,533 7/12/2022
7.0.0-preview.5.22301.12 4,966 6/14/2022
7.0.0-preview.4.22229.4 15,280 5/10/2022
7.0.0-preview.3.22175.4 14,160 4/13/2022
7.0.0-preview.2.22152.2 16,417 3/14/2022
7.0.0-preview.1.22076.8 4,914 2/17/2022
6.0.1 4,339,710 6/13/2023
6.0.0 29,413,112 11/8/2021
6.0.0-rc.2.21480.5 17,094 10/12/2021
6.0.0-rc.1.21451.13 12,158 9/14/2021
6.0.0-preview.7.21377.19 6,159 8/10/2021
6.0.0-preview.6.21352.12 10,568 7/14/2021
6.0.0-preview.5.21301.5 7,909 6/15/2021
6.0.0-preview.4.21253.7 23,565 5/24/2021
6.0.0-preview.3.21201.4 19,059 4/8/2021
6.0.0-preview.2.21154.6 12,562 3/11/2021
6.0.0-preview.1.21102.12 20,201 2/12/2021
5.0.0 34,188,817 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 39,320 10/13/2020
5.0.0-rc.1.20451.14 8,655 9/14/2020
5.0.0-preview.8.20407.11 14,492 8/25/2020
5.0.0-preview.7.20364.11 22,068 7/21/2020
5.0.0-preview.6.20305.6 10,642 6/25/2020
5.0.0-preview.5.20278.1 6,151 6/10/2020
5.0.0-preview.4.20251.6 15,596 5/18/2020
5.0.0-preview.3.20214.6 40,205 4/23/2020
5.0.0-preview.2.20160.6 20,097 4/2/2020
5.0.0-preview.1.20120.5 3,908 3/16/2020
4.7.0 27,037,768 12/3/2019
4.7.0-preview3.19551.4 7,152 11/13/2019
4.7.0-preview2.19523.17 15,840 11/1/2019
4.7.0-preview1.19504.10 13,576 10/15/2019
4.6.0 4,185,331 9/23/2019
4.6.0-rc1.19456.4 6,493 9/16/2019
4.6.0-preview9.19421.4 9,460 9/4/2019
4.6.0-preview9.19416.11 642 9/4/2019
4.6.0-preview8.19405.3 13,262 8/13/2019
4.6.0-preview7.19362.9 15,821 7/23/2019
4.6.0-preview6.19303.8 45,255 6/12/2019
4.6.0-preview6.19264.9 647 9/4/2019
4.6.0-preview5.19224.8 30,200 5/6/2019
4.6.0-preview4.19212.13 3,815 4/18/2019
4.6.0-preview3.19128.7 10,358 3/6/2019
4.6.0-preview.19073.11 19,420 1/29/2019
4.6.0-preview.18571.3 16,562 12/3/2018
4.5.0 21,604,232 5/29/2018
4.5.0-rc1 55,585 5/6/2018
4.5.0-preview2-26406-04 26,444 4/10/2018
4.5.0-preview1-26216-02 35,280 2/26/2018
4.5.0-preview1-25914-04 301,336 11/15/2017
4.4.1 258,654 12/12/2017
4.4.0 770,197 8/11/2017
4.4.0-preview2-25405-01 2,603 6/27/2017
4.4.0-preview1-25305-02 5,731 5/9/2017
4.3.0 408,120 11/15/2016
4.3.0-preview1-24530-04 13,233 10/24/2016
4.1.0 9,950,242 6/27/2016
4.1.0-rc2-24027 3,053 5/16/2016
4.1.0-beta-23516 3,686 11/18/2015
4.1.0-beta-23409 2,304 10/15/2015
4.1.0-beta-23225 2,292 9/2/2015
4.0.0-beta-23123 3,203 7/29/2015
4.0.0-beta-23109 2,398 7/27/2015
4.0.0-beta-23019 2,468 6/30/2015
4.0.0-beta-22816 2,736 4/24/2015
4.0.0-beta-22605 2,878 2/13/2015
4.0.0-beta-22416 2,924 1/16/2015