求win7 VS2010环境下用C#获取CPU,硬盘和主板温度的代码!!!~

2024-12-23 09:45:15
推荐回答(3个)
回答1:

Process p = new Process();
p.StartInfo.FileName="cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine("netsh -c interface ip dump >f:\a.txt");
//p.WaitForExit();
//p.StandardInput.WriteLine("exit");

回答2:

360硬件大师

回答3:

应该找不到啊,你还是花钱吧啊