![]() |
VOOZH | about |
dotnet add package System.ServiceProcess.ServiceController --version 10.0.9
NuGet\Install-Package System.ServiceProcess.ServiceController -Version 10.0.9
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.9" />
<PackageVersion Include="System.ServiceProcess.ServiceController" Version="10.0.9" />Directory.Packages.props
<PackageReference Include="System.ServiceProcess.ServiceController" />Project file
paket add System.ServiceProcess.ServiceController --version 10.0.9
#r "nuget: System.ServiceProcess.ServiceController, 10.0.9"
#:package System.ServiceProcess.ServiceController@10.0.9
#addin nuget:?package=System.ServiceProcess.ServiceController&version=10.0.9Install as a Cake Addin
#tool nuget:?package=System.ServiceProcess.ServiceController&version=10.0.9Install as a Cake Tool
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.
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);
}
using System.ServiceProcess;
ServiceController service = new("TestServiceName");
if (service.CanStop && service.Status != ServiceControllerStatus.Stopped && service.Status != ServiceControllerStatus.StopPending)
{
service.Stop();
}
The main types provided by this library are:
System.ServiceProcess.ServiceControllerSystem.ServiceProcess.ServiceControllerStatusSystem.ServiceProcess.ServiceTypeSystem.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 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on System.ServiceProcess.ServiceController:
| Package | Downloads |
|---|---|
|
Microsoft.Extensions.Hosting.WindowsServices
.NET hosting infrastructure for Windows Services. |
|
|
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.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.WSMan.Management
Runtime for hosting PowerShell |
Showing the top 20 popular GitHub repositories that depend on System.ServiceProcess.ServiceController:
| Repository | Stars |
|---|---|
|
PowerShell/PowerShell
PowerShell for every system!
|
|
|
BCUninstaller/Bulk-Crap-Uninstaller
Remove large amounts of unwanted applications quickly.
|
|
|
netchx/netch
A simple proxy client
|
|
|
Jackett/Jackett
API Support for your favorite torrent trackers
|
|
|
duplicati/duplicati
Store securely encrypted backups in the cloud!
|
|
|
winsw/winsw
A wrapper executable that can run any executable as a Windows service, in a permissive license.
|
|
|
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
|
|
|
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
|
|
|
TechnitiumSoftware/DnsServer
Technitium DNS Server
|
|
|
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.
|
|
|
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.
|
|
|
microsoft/VFSForGit
Virtual File System for Git: Enable Git at Enterprise Scale
|
|
|
actions/runner
The Runner for GitHub Actions :rocket:
|
|
|
Lidarr/Lidarr
Looks and smells like Sonarr but made for music.
|
|
|
rayenghanmi/RyTuneX
RyTuneX is a cutting-edge optimizer built with the WinUI 3 framework, designed to amplify the performance of Windows devices. Crafted for both Windows 10 and 11.
|
|
|
immense/Remotely
A remote control and remote scripting solution, built with .NET 8, Blazor, and SignalR.
|
|
|
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
|
|
|
ravendb/ravendb
ACID Document Database
|
|
|
Topshelf/Topshelf
An easy service hosting framework for building Windows services using .NET
|
| Version | Downloads | Last Updated |
|---|---|---|
| 11.0.0-preview.5.26302.115 | 2,060 | 6/9/2026 |
| 11.0.0-preview.4.26230.115 | 3,615 | 5/12/2026 |
| 11.0.0-preview.3.26207.106 | 4,365 | 4/14/2026 |
| 11.0.0-preview.2.26159.112 | 4,746 | 3/10/2026 |
| 11.0.0-preview.1.26104.118 | 5,112 | 2/10/2026 |
| 10.0.9 | 132,829 | 6/9/2026 |
| 10.0.8 | 672,167 | 5/12/2026 |
| 10.0.7 | 968,299 | 4/21/2026 |
| 10.0.6 | 376,568 | 4/14/2026 |
| 10.0.5 | 1,396,185 | 3/12/2026 |
| 10.0.4 | 112,120 | 3/10/2026 |
| 10.0.3 | 1,124,717 | 2/10/2026 |
| 10.0.2 | 1,353,064 | 1/13/2026 |
| 10.0.1 | 1,147,669 | 12/9/2025 |
| 9.0.17 | 12,747 | 6/9/2026 |
| 9.0.16 | 53,181 | 5/12/2026 |
| 9.0.15 | 209,261 | 4/14/2026 |
| 9.0.14 | 198,970 | 3/10/2026 |
| 9.0.13 | 134,541 | 2/10/2026 |
| 9.0.12 | 128,328 | 1/13/2026 |