How can I use C++ to control CPU fan speed in Windows Vista Ultimate? I would like to use ACPI.

link|improve this question
2  
I'd be surprised to learn that this is possible to do without using ACPI. AFAIK, ACPI is the BIOS-level protocol for interfacing with these components... – rmeador Apr 24 '09 at 18:15
3  
What fan? CPU? GPU? Case? Ceiling? – Ben S Apr 24 '09 at 18:16
feedback

2 Answers

up vote 4 down vote accepted

ACPI:

You need to learn about and use the WMI - Windows system management interface. Here are a few resources that will give you clues on where to start:

Note that some motherboards don't support fan speed changes, and even those that do may not expose this to the WMI. In the best case you may still have to detect the motherboard type and talk to the fan management controllers directly.

No ACPI:

If you don't want to use ACPI then you're going to have to write your own code to access the SMBUS on the motherboard, and then control the fan controller chips.

Check out the program motherboard monitor for clues on how to get started. It's nontrivial, since every motherboard and bios is different.

link|improve this answer
1  
He didn't say API, he said ACPI: en.wikipedia.org/wiki/ACPI – Ben S Apr 24 '09 at 18:17
1  
Exactly. The API for controlling fans is ACPI. If he doesn't want to use the API that's designed to provide fan control, he's got a lot of work ahead of him. – Adam Davis Apr 24 '09 at 18:20
1  
Nevertheless edited for clarity. – Adam Davis Apr 24 '09 at 18:21
1  
"I want using ACPI" sounds to me like he wants to use it... possibly anyway... ^^ – Oskar Duveborn Apr 24 '09 at 18:28
1  
Ah, I interpretted it as, "I won't use ACPI"... – Adam Davis Apr 24 '09 at 18:36
show 1 more comment
feedback

Similar to this question. If you are interested, I wrote an answer there with links to some sites that I found helpful in developing my own fan control driver.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown