vote up 3 vote down star
2

Is there a Windows standard way to do things such as "start fan", "decrease speed" or the like, from C/C++?

I have a suspicion it might be ACPI, but I am a frail mortal and cannot read that kind of documentation.

Edit: e.g. Windows 7 lets you select in your power plan options such as "passive cooling" (only when things get hot?) vs. "active cooling" (keep the CPU proactively cool?). It seems the OS does have a way to control the fan generically.

flag

4 Answers

vote up 8 vote down

Windows does not provide direct access to this. If you could programmatically turn laptop fans off, you could programatically destroy a lot of laptops.

link|flag
Haha, well said :) – Iraimbilanja Apr 9 at 10:48
vote up 2 vote down

Yes, It would be ACPI, and to my knowledge windows doesn't give much/any control over that from user space. So you'd have to start mucking with drivers, which is nigh impossible on windows.

That said, google reveals there are a few open source windows libraries for this for specific hardware... so depending on your hardware you might be able to find something.

link|flag
vote up 2 vote down

WIndows Management Instrumentation library (WMI) does provide a Win32_Fan Class and even a SetSpeed method. Alas, the docs say this is not implemented, so I guess it's not very helpful. But you may be able to control things by setting the power state.

link|flag
vote up 0 vote down

ACPI may or may not allow you to adjust the fan settings. Some BIOS implementations may not allow that control though -- they may force control depending on the BIOS/CMOS settings. One might be hard-pressed for a good use case where the BIOS control (even customized) is insufficient. I have come across situations where the BIOS control indeed was insufficient, but not for all possible motherboard platforms.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.