我知道這已被問過, ,但我似乎無法得到它的工作。 我已經叫了以下內容:設置風扇速度在C#
using System.Management;
using System.Management.Instrumentation;
using System.Runtime.InteropServices;
我曾經嘗試這樣做(我知道這是可悲的,但它的最好的,我發現):
[DllImport("Cimwin32.dll")]
private void button1_Click(object sender, EventArgs e)
{
uint32 SetSpeed(//???
[in] uint64 300
);
}
如何通過C#設置計算機的風扇轉速?
你想要哪個風扇設置打電話了嗎?大多數電腦有很多。你爲什麼想這樣做?使用SpeedFan這樣的實用程序會不會更容易? –
@DavidHeffernan,好點,我不知道SpeedFan Utility甚至存在。 – funerr
[C#control FAN speed]的可能重複(http://stackoverflow.com/questions/9391181/c-sharp-control-fan-speed) –