How can I use C++ to control CPU fan speed in Windows Vista Ultimate? I would like to use ACPI.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.