所以我有一段代码可以使用 /requests 选项调用 powercfg 并从标准输出中获取结果。
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "powercfg";
p.StartInfo.Arguments = "/requests";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
但是,当我运行此代码时,我得到的输出与在命令行上运行相同命令时完全不同。
在代码版本的情况下,我只得到“[DRIVER] ?”的负载。值回来了,但在命令行上,我通常会得到 2 或 3 个格式正确的响应。
我已经从与具有相同环境的相同用户相同的命令提示符窗口运行我的代码,但仍然没有乐趣。
有任何想法吗 ?