Displaying the Shutdown Dialog Box
Windows NT/2000/XP: The following example uses the InitiateSystemShutdown function to begin the system shutdown process on the computer on which is user is logged on. The application must first enable the SE_SHUTDOWN_NAME privilege. HANDLE hToken;              // handle to process token 
TOKEN_PRIVILEGES tkp;       // pointer to token structure 
 
BOOL fResult;               // system shutdown flag 
 
// Get the current process token handle so we can get shutdown 
// privilege. 
 
if (!OpenProcessToken(GetCurrentProcess(), 
        TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) 
    ErrorHandler("OpenProcessToken failed."); 
 
// Get the LUID for shutdown privilege. 
 
LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, 
        &tkp.Privileges[0].Luid); 
 
tkp.PrivilegeCount = 1;  // one privilege to set    
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 
 
// Get shutdown privilege for this process. 
 
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
    (PTOKEN_PRIVILEGES) NULL, 0); 
 
// Cannot test the return value of AdjustTokenPrivileges. 
 
if (GetLastError() != ERROR_SUCCESS) 
    ErrorHandler("AdjustTokenPrivileges enable failed."); 
 
// Display the shutdown dialog box and start the time-out countdown. 
 
fResult = InitiateSystemShutdown( 
    NULL,                                  // shut down local computer 
    "Click on the main window and press \
     the Escape key to cancel shutdown.",  // message to user 
    20,                                    // time-out period 
    FALSE,                                 // ask user to close apps 
    TRUE);                                 // reboot after shutdown 
 
if (!fResult) 

    ErrorHandler("InitiateSystemShutdown failed."); 

 
// Disable shutdown privilege. 
 
tkp.Privileges[0].Attributes = 0; 
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
        (PTOKEN_PRIVILEGES) NULL, 0); 
 
if (GetLastError() != ERROR_SUCCESS) 
{
    ErrorHandler("AdjustTokenPrivileges disable failed."); 

If the AbortSystemShutdown function is executed in the time-out period specified by InitiateSystemShutdown, the system does not shut down. In this example, the user can prevent the system from shutting down by clicking on the application's main window and pressing the ESC key. The example processes the keystroke by calling AbortSystemShutdown. HANDLE hToken;              // handle to process token 
TOKEN_PRIVILEGES tkp;       // pointer to token structure 
 
BOOL fResult;               // system shutdown flag 
 
case WM_KEYDOWN: 
 
    // Process only the Escape key. 
 
    if (wParam != VK_ESCAPE) 
    { 
        break; 
    } 
 
    // Get the current process token handle  so we can get shutdown 
    // privilege. 
 
    if (!OpenProcessToken(GetCurrentProcess(), 
            TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) 
    {
        ErrorHandler("OpenProcessToken failed."); 
    }
 
    // Get the LUID for shutdown privilege. 
 
    LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, 
            &tkp.Privileges[0].Luid); 
 
    tkp.PrivilegeCount = 1;  // one privilege to set    
    tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; 
 
    // Get shutdown privilege for this process. 
 
    AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
        (PTOKEN_PRIVILEGES)NULL, 0); 
 
    // Cannot test the return value of AdjustTokenPrivileges. 
 
    if (GetLastError() != ERROR_SUCCESS) 
    {
        ErrorHandler("AdjustTokenPrivileges enable failed."); 
    }
 
    // Prevent the system from shutting down. 
 
    fResult = AbortSystemShutdown(NULL); 
 
    if (!fResult) 
    { 
        ErrorHandler("AbortSystemShutdown failed."); 
    } 
 
    // Disable shutdown privilege. 
 
    tkp.Privileges[0].Attributes = 0; 
    AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
        (PTOKEN_PRIVILEGES) NULL, 0); 
 
    if (GetLastError() != ERROR_SUCCESS) 
    {
        ErrorHandler("AdjustTokenPrivileges disable failed."); 
    }
 
    break;

解决方案 »

  1.   

    C#调用 WinApi:ExitWindowsEx
    如:(其他略!)
    using System.Runtime.InteropServices;//必须加public class Win32 //可把所有的api写到一个类里便于管理
    { [DllImport("user32.dll", EntryPoint="ExitWindowsEx")]
    public static extern bool ExitWindowsEx(long uFlags,long dwReserved );
    }
    然后在写:(其他略!)
    private void Form1_Load(object sender, System.EventArgs e)
    {
    Win32.ExitWindowsEx(0,0);
    /*实验的时候请保存重要文挡 不要害怕这是(注销)
    请不要和我学在 Form1_Load 事件里写^_^*/
    }//注意Win2000/xp下单用 ExitWindowsEx 
    会很麻烦 好象还要调用其他API连用才可关机
    就可以注销参数0或4第1个参数有几个数值[0:注销][2:重新引导系统][1:关机][4:注销并强迫中止没有响应的进程]
    第2个参数win9x恒定为零;Win2000/xp 会有很多设置
      

  2.   

    to FlashElf(闪) 不是麻烦,以你的代码是不可能在Win2000 or XP 下实现关机或重启的,因为你没有获得关机的权限