Nefarius.Utilities.DeviceManagement 3.6.211

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Nefarius.Utilities.DeviceManagement --version 3.6.211
                    
NuGet\Install-Package Nefarius.Utilities.DeviceManagement -Version 3.6.211
                    
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="Nefarius.Utilities.DeviceManagement" Version="3.6.211" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Nefarius.Utilities.DeviceManagement" Version="3.6.211" />
                    
Directory.Packages.props
<PackageReference Include="Nefarius.Utilities.DeviceManagement" />
                    
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 Nefarius.Utilities.DeviceManagement --version 3.6.211
                    
#r "nuget: Nefarius.Utilities.DeviceManagement, 3.6.211"
                    
#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.
#:package Nefarius.Utilities.DeviceManagement@3.6.211
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Nefarius.Utilities.DeviceManagement&version=3.6.211
                    
Install as a Cake Addin
#tool nuget:?package=Nefarius.Utilities.DeviceManagement&version=3.6.211
                    
Install as a Cake Tool

Nefarius.Utilities.DeviceManagement

Managed wrappers around SetupAPI, Cfgmgr32, NewDev and DrvStore native APIs on Windows.

Examples

Some usage examples of the core library features are presented below.

Enumerate all USB devices

The Devcon utility class offers helper methods to find devices.

var instance = 0;
// enumerate all devices that export the GUID_DEVINTERFACE_USB_DEVICE interface
while (Devcon.FindByInterfaceGuid(DeviceInterfaceIds.UsbDevice, out var path,
           out var instanceId, instance++))
{
    Console.WriteLine($"Path: {path}, InstanceId: {instanceId}");

    var usbDevice = PnPDevice
        .GetDeviceByInterfaceId(path)
        .ToUsbPnPDevice();

    Console.WriteLine($"Got USB device {usbDevice.InstanceId}");
}

Listen for new and removed USB devices

One or more instances of the DeviceNotificationListener can be used to listen for plugin and unplug events of various devices. This class has no dependency on WinForms or WPF and works in Console Applications and Windows Services alike.

var listener = new DeviceNotificationListener();

listener.DeviceArrived += Console.WriteLine;
listener.DeviceRemoved += Console.WriteLine;

// start listening for plugins or unplugs of GUID_DEVINTERFACE_USB_DEVICE interface devices
listener.StartListen(DeviceInterfaceIds.UsbDevice);

Get all driver packages in the Driver Store

var allDriverPackages = DriverStore.ExistingDrivers.ToList();

Remove all copies of mydriver.inf from the Driver Store

foreach (var driverPackage in allDriverPackages.Where(p => p.Contains("mydriver.inf", StringComparison.OrdinalIgnoreCase)))
{
    DriverStore.RemoveDriver(driverPackage);
}
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 was computed.  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 was computed.  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 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 was computed.  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 (6)

Showing the top 5 NuGet packages that depend on Nefarius.Utilities.DeviceManagement:

Package Downloads
Nefarius.Drivers.HidHide

Managed API for configuring HidHide.

Wujek_Dualsense_API

Wujek Dualsense API is a .NET library designed to interface with the PlayStation DualSense controller, providing functionalities to control its various features such as haptic feedback, LEDs, triggers, and more.

Nefarius.Utilities.Bluetooth

Utility library for unconventional Bluetooth tasks on Windows.

O.Usb

Package Description

Oakrey.Usb

A .NET library for managing USB devices, featuring communication, device monitoring, and event handling functionalities.

GitHub repositories (7)

Showing the top 7 popular GitHub repositories that depend on Nefarius.Utilities.DeviceManagement:

Repository Stars
Valkirie/HandheldCompanion
ControllerService
CircumSpector/DS4Windows
A reimagination of DS4Windows.
nefarius/Legacinator
The one and only Legacinator.
project-sbc/Handheld-Control-Panel
InvoxiPlayGames/FestivalInstrumentMapper
Maps most existing Rock Band / Guitar Hero instruments as Xbox One instruments for Fortnite Festival.
Struggleton/Delfinovin
An XInput solution for Gamecube Controllers
project-sbc/Handheld-Hardware-Tools
Software that compliments Windows laptops/tablets/gaming handhelds to allow easy control of TDP, brightness, cpu clock, etc.
Version Downloads Last Updated
5.2.0 42 10/14/2025
5.2.0-pre003 29 10/14/2025
5.2.0-pre002 38 10/14/2025
5.2.0-pre001 36 10/14/2025
5.1.0 2,854 2/23/2025
5.0.0 2,326 11/9/2024
5.0.0-pre001 141 11/9/2024
4.0.3 205 11/7/2024
4.0.3-pre001 121 11/7/2024
4.0.2 355 10/30/2024
4.0.1 887 10/1/2024
4.0.0 1,672 9/20/2024
4.0.0-pre002 111 9/20/2024
4.0.0-pre001 143 9/20/2024
3.23.0 760 8/17/2024
3.22.0 4,958 7/7/2024
3.21.0 222 7/4/2024
3.20.0 199 7/4/2024
3.19.0 374 6/30/2024
3.19.0-pre3 179 6/28/2024
3.19.0-pre2 148 6/27/2024
3.18.1 1,720 3/11/2024
3.17.406 2,607 8/29/2023
3.17.403 363 8/27/2023
3.17.401-pre 207 8/26/2023
3.16.384-pre 250 8/23/2023
3.14.305 2,515 5/14/2023
3.13.303-pre 258 5/14/2023
3.12.297-pre 338 5/13/2023
3.11.295-pre 277 5/12/2023
3.10.293-pre 324 5/9/2023
3.9.255 1,823 4/9/2023
3.8.228 1,315 2/2/2023
3.8.225-pre 276 2/1/2023
3.6.213 894 1/12/2023
3.6.211 431 1/12/2023
3.5.209 661 12/26/2022
3.4.206 497 12/20/2022
3.4.204-pre 273 12/19/2022
3.4.202-pre 246 12/19/2022
3.3.196 808 10/16/2022
3.2.193 528 10/16/2022
3.2.191 525 10/16/2022
3.2.189 543 10/16/2022
3.2.186 530 10/16/2022
3.2.184 796 9/29/2022
3.2.175 626 9/12/2022
3.1.173 512 9/12/2022
3.1.171 528 9/12/2022
3.0.168 560 9/10/2022
3.0.165-pre 337 9/9/2022
2.9.116 620 8/25/2022
2.8.110 1,541 7/19/2022
2.8.107 848 6/15/2022
2.7.104 560 6/14/2022
2.6.102 730 6/2/2022
2.6.100 592 5/26/2022
2.6.98 626 5/24/2022
2.4.94 631 5/19/2022
2.4.91 602 5/14/2022
2.4.89 539 5/14/2022
2.3.87 574 5/13/2022
2.2.85 607 5/11/2022
2.1.76 563 5/11/2022
2.1.74 585 5/10/2022
2.0.71 597 5/10/2022
2.0.68 621 5/8/2022
2.0.66 567 5/8/2022
2.0.60 588 5/8/2022
1.6.50 605 5/6/2022
1.6.48-beta 302 5/6/2022
1.4.42-beta 1,167 2/1/2022
1.3.28-beta 340 1/30/2022
1.2.24-beta 320 1/30/2022
1.2.22-beta 318 1/30/2022
1.1.20-beta 337 1/30/2022
1.0.18-beta 319 1/30/2022
1.0.15-beta 488 1/17/2022
1.0.13-beta 299 1/17/2022
1.0.11-beta 322 1/17/2022
1.0.6-beta 333 1/16/2022
1.0.4-beta 325 1/16/2022
1.0.2-beta 341 1/16/2022