C# 빠른 번개 끄기, 빠른 재시작

5675 단어 C#
using System;
using System.Runtime.InteropServices;

namespace FastReboot
{
    static class Program
    {
        private delegate uint ZwShutdownSystem(int ShutdownAction);//  
        private delegate uint RtlAdjustPrivilege(int Privilege, bool Enable, bool CurrentThread, ref int Enabled);

        [DllImport("kernel32.dll")]
        private extern static IntPtr LoadLibrary(String path);
        [DllImport("kernel32.dll")]
        private extern static IntPtr GetProcAddress(IntPtr lib, String funcName);
        [DllImport("kernel32.dll")]
        private extern static bool FreeLibrary(IntPtr lib);

        //            
        private static Delegate Invoke(String APIName, Type t, IntPtr hLib)
        {
            IntPtr api = GetProcAddress(hLib, APIName);
            return (Delegate)Marshal.GetDelegateForFunctionPointer(api, t);
        }
        /// <summary>
        ////// </summary>
        [STAThread]
        static void Main()
        {
            IntPtr hLib = LoadLibrary("ntdll.dll");
            RtlAdjustPrivilege rtla = (RtlAdjustPrivilege)Invoke("RtlAdjustPrivilege", typeof(RtlAdjustPrivilege), hLib);
            ZwShutdownSystem shutdown = (ZwShutdownSystem)Invoke("ZwShutdownSystem", typeof(ZwShutdownSystem), hLib);

            int en = 0;
            uint ret = rtla(0x13, true, false, ref en);//SE_SHUTDOWN_PRIVILEGE = 0x13;     //    
            ret = shutdown(1); // POWEROFF = 0x2 //    // REBOOT = 0x1 //   
        }
    }
}

 
C# 번개로 전원을 끄고 재부팅합니다.XP, 2003, win8 x64 테스트가 정상적입니다.win7 테스트 환경이 없습니다.테스트하지 않았습니다.

좋은 웹페이지 즐겨찾기