3

What I'd like to do is to monitor / control my computer fans using C# or VB.Net. Is there any .NET library that allows me to do this in a simple way?

2 Answers2

1

Have a look at Open Hardware Monitor. It is an opensource .NET project.

leppie
  • 115,091
  • 17
  • 196
  • 297
-1

You might want to take a look at the Win32_Fan_Class, which is accessible through Windows Management Instrumentation (WMI) - which .NET through System.Management, if I recall correctly.

Hope this helps you out.

Edit: Here are a couple of related links/questionsthat I found regarding fan / hardware access through code (primarily in C++, but could be useful to some)

Programatically Access Fan on a Laptop

Using WMI in C# - DreamInCode.net

Community
  • 1
  • 1
Rion Williams
  • 74,820
  • 37
  • 200
  • 327