如何从 .NET 应用程序启动“powercfg.exe -energy”?

发布于 2024-09-25 20:37:06 字数 513 浏览 1 评论 0原文

当我

using (var process = new Process
{
    StartInfo = new ProcessStartInfo
    {
         FileName = "powercfg.exe",
         Arguments = "-energy",
         RedirectStandardOutput = true,
         UseShellExecute = false,
    }
})
{
    process.Start();
    process.WaitForExit();
}

输出时:

能源消耗诊断书 (energy.dll) não pôde ser carregada。

翻译成英文:

无法加载能源消耗效率诊断库(energy.dll)。

即使以管理员身份运行。

When I

using (var process = new Process
{
    StartInfo = new ProcessStartInfo
    {
         FileName = "powercfg.exe",
         Arguments = "-energy",
         RedirectStandardOutput = true,
         UseShellExecute = false,
    }
})
{
    process.Start();
    process.WaitForExit();
}

It outputs:

A biblioteca de Diagnóstico de Eficiência de Consumo de Energia (energy.dll) não
pôde ser carregada.

Translated to English:

The Energy Consumption Efficiency Diagnostic library (energy.dll) couldn't be loaded.

Even when running as admin.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷默言语 2024-10-02 20:37:06

恐怕我无法复制你的结果;我按预期得到了结果文件。但如果有帮助的话,也许我的测试参数将帮助您缩小环境中可能的罪魁祸首的范围:

  • 以管理员身份运行 Visual Studio 2010
  • 目标 .NET 4 客户端配置文件
  • 编译了 x86 和任何 CPU 二进制文件
  • 计算机正在运行 Windows 7 x64

I'm afraid I cannot duplicate your results; I get the results file as expected. But if it helps, perhaps my testing parameters will help you narrow down what may be the culprit in your environment:

  • Running Visual Studio 2010 as Administrator
  • Targeted .NET 4 Client Profile
  • Compiled both x86 and Any CPU binaries
  • Computer is running Windows 7 x64
下雨或天晴 2024-10-02 20:37:06

WorkingDirectory 设置为 energy.dllpowercfg.exe 所在路径。

Set the WorkingDirectory to the path energy.dll and powercfg.exe is located.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文