天天看點

關閉和登出Windows

提供兩種方法,第一種可以通過調用API函數實作關機功能,第二種可以使用我前幾篇提到的調用CMD執行代碼的功能通過shutdown指令關機

代碼如下:

using System;

關閉和登出Windows

using System.Collections.Generic;

關閉和登出Windows

using System.Text;

關閉和登出Windows

using System.Runtime.InteropServices;

關閉和登出Windows
關閉和登出Windows

namespace ZHWTools

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

{

關閉和登出Windows

    class CloseWin

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

        [StructLayout(LayoutKind.Sequential, Pack = 1)]

關閉和登出Windows

        internal struct TokPriv1Luid

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

            public int Count;

關閉和登出Windows

            public long Luid;

關閉和登出Windows

            public int Attr;

關閉和登出Windows

        }

關閉和登出Windows
關閉和登出Windows

        [DllImport("kernel32.dll", ExactSpelling = true)]

關閉和登出Windows

        internal static extern IntPtr GetCurrentProcess();

關閉和登出Windows
關閉和登出Windows

        [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]

關閉和登出Windows

        internal static extern bool OpenProcessToken(IntPtr h, int acc, ref   IntPtr phtok);

關閉和登出Windows
關閉和登出Windows

        [DllImport("advapi32.dll", SetLastError = true)]

關閉和登出Windows

        internal static extern bool LookupPrivilegeValue(string host, string name, ref   long pluid);

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

        internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,

關閉和登出Windows

                                        ref   TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);

關閉和登出Windows
關閉和登出Windows

        [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]

關閉和登出Windows

        internal static extern bool ExitWindowsEx(int flg, int rea);

關閉和登出Windows
關閉和登出Windows

        internal const int SE_PRIVILEGE_ENABLED = 0x00000002;

關閉和登出Windows

        internal const int TOKEN_QUERY = 0x00000008;

關閉和登出Windows

        internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;

關閉和登出Windows

        internal const string SE_SHUTDOWN_NAME = "SeShutdownPrivilege";

關閉和登出Windows

        internal const int EWX_LOGOFF = 0x00000000;

關閉和登出Windows

        internal const int EWX_SHUTDOWN = 0x00000001;

關閉和登出Windows

        internal const int EWX_REBOOT = 0x00000002;

關閉和登出Windows

        internal const int EWX_FORCE = 0x00000004;

關閉和登出Windows

        internal const int EWX_POWEROFF = 0x00000008;

關閉和登出Windows

        internal const int EWX_FORCEIFHUNG = 0x00000010;

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

        private void DoExitWin(int flg)

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

            bool ok;

關閉和登出Windows

            TokPriv1Luid tp;

關閉和登出Windows

            IntPtr hproc = GetCurrentProcess();

關閉和登出Windows

            IntPtr htok = IntPtr.Zero;

關閉和登出Windows

            ok = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref   htok);

關閉和登出Windows

            tp.Count = 1;

關閉和登出Windows

            tp.Luid = 0;

關閉和登出Windows

            tp.Attr = SE_PRIVILEGE_ENABLED;

關閉和登出Windows

            ok = LookupPrivilegeValue(null, SE_SHUTDOWN_NAME, ref   tp.Luid);

關閉和登出Windows

            ok = AdjustTokenPrivileges(htok, false, ref   tp, 0, IntPtr.Zero, IntPtr.Zero);

關閉和登出Windows

            ok = ExitWindowsEx(flg, 0);

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

        public static void closeWindow()

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

            CloseWin cw = new CloseWin();

關閉和登出Windows

            cw.DoExitWin(EWX_POWEROFF);

關閉和登出Windows
關閉和登出Windows
關閉和登出Windows

    }

關閉和登出Windows

}

使用時隻要用ZHWTools.CloseWin.closeWindow();