• 用 C# 代码如何实现让你的电脑关机,重启,注销,锁定,休眠,睡眠


    简介

    本文讲述了用 C# 代码如何实现让你的电脑关机,重启,注销,锁定,休眠,睡眠。

    如何实现

    首先,使用 using 语句添加我们需要的命名空间:

    using System.Diagnostics;
    using System.Runtime.InteropServices;

    关机

    代码如下:

    Process.Start("shutdown","/s /t 0");    // 参数 /s 的意思是要关闭计算机
                                            // 参数 /t 0 的意思是告诉计算机 0 秒之后执行命令

    重启

    代码如下:

    Process.Start("shutdown""/r /t 0"); // 参数 /r 的意思是要重新启动计算机

    注销

    需要使用 DllImport 的方式在你的类里声明一个 Windows API 函数:

    [DllImport("user32")]
    public static extern bool ExitWindowsEx(uint uFlags, uint dwReason);

    然后,使用如下代码就可以实现注销:

    ExitWindowsEx(0,0);

    锁定

    和注销一样也需要声明一个函数:

    [DllImport("user32")]
    public static extern void LockWorkStation();

    然后,使用如下代码就可以实现锁定:

    LockWorkStation();

    休眠和睡眠

    同样,还是需要声明一个函数:

    [DllImport("PowrProf.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
    public static extern bool SetSuspendState(bool hiberate, bool forceCritical, bool disableWakeEvent);

    实现休眠,代码如下:

    SetSuspendState(truetruetrue);

    实现睡眠,代码如下:

    SetSuspendState(falsetruetrue);
  • 相关阅读:
    SQL Server系统表sysobjects介绍
    tofixed方法 四舍五入
    (function($){})(jQuery);
    DOS批处理命令-字符串操作
    IF ERRORLEVEL 和 IF %ERRORLEVEL% 区别
    Gpupdate命令详解
    DOS批处理中%cd%和%~dp0的区别
    SetACL 使用方法详细参数中文解析
    Lazarus 1.6 增加了新的窗体编辑器——Sparta_DockedFormEditor.ipk
    Lazarus 1.44升级到1.6 UTF8处理发生变化了
  • 原文地址:https://www.cnblogs.com/sekon/p/5043766.html
Copyright © 2020-2023  润新知