如何关闭计算机从C#关闭计算机

2023-09-02 10:15:49 作者:21.东风敬我桃花酒

什么是关机的最好办法从C#程序的计算机?

What's the best way to shutdown the computer from a C# program?

我已经找到了工作,这几个方法 - 我会后下他们 - 但他们都不是很优雅。我在寻找的东西,更简单和原生.NET。

I've found a few methods that work - I'll post them below - but none of them are very elegant. I'm looking for something that's simpler and natively .net.

注意2015

在这个非常古老的问题:现代的解决方案,Windows8的+,简直是弥Vertal的下面

On this very old question: the modern solution, Windows8+, is simply Micah Vertal's below.

推荐答案

来自的一Geekpedia帖子

此方法使用 WMI 以关闭窗口。

This method uses WMI to shutdown windows.

您将需要一个参考System.Management添加到您的项目中使用此功能。

You'll need to add a reference to System.Management to your project to use this.

using System.Management;

void Shutdown()
{
    ManagementBaseObject mboShutdown = null;
    ManagementClass mcWin32 = new ManagementClass("Win32_OperatingSystem");
    mcWin32.Get();

    // You can't shutdown without security privileges
    mcWin32.Scope.Options.EnablePrivileges = true;
    ManagementBaseObject mboShutdownParams =
             mcWin32.GetMethodParameters("Win32Shutdown");

     // Flag 1 means we want to shut down the system. Use "2" to reboot.
    mboShutdownParams["Flags"] = "1";
    mboShutdownParams["Reserved"] = "0";
    foreach (ManagementObject manObj in mcWin32.GetInstances())
    {
        mboShutdown = manObj.InvokeMethod("Win32Shutdown", 
                                       mboShutdownParams, null);
    }
}
相关推荐