我用VC 6.0 试了一下,只能注销不能关闭.
"ExitWindowsEx(EWX_FORCE | EWX_POWEROFF, 0);" 没有效果.
在线等!!

解决方案 »

  1.   

    //get os privilege
    HANDLE hProcess,hToken;
    TOKEN_PRIVILEGES Privileges;
    LUID luid;
    hProcess=GetCurrentProcess(); //Open Process Token
    OpenProcessToken(hProcess,TOKEN_ADJUST_PRIVILEGES,&hToken);
    Privileges.PrivilegeCount=1;
    LookupPrivilegeValue(NULL,SE_SHUTDOWN_NAME,&luid);
    Privileges.Privileges[0].Luid=luid;
    Privileges.Privileges[0].Attributes=SE_PRIVILEGE_ENABLED;
    //Adjust the Privileges
    AdjustTokenPrivileges(hToken,FALSE,&Privileges,NULL,NULL,NULL);
    //shutdown
    //注意此处我设为强制关机,所以注意要保存当前数据
    ExitWindowsEx(EWX_SHUTDOWN|EWX_FORCE|EWX_POWEROFF,NULL);
      

  2.   

    HANDLE hToken = NULL;          // access token handle
    LPCTSTR lpszPrivilege = SE_SHUTDOWN_NAME;//"SeSecurityPrivilege";  // name of privilege to enable/disable
    TOKEN_PRIVILEGES tp;
    HANDLE hThread;
    hThread = NULL;
    LUID luid;

    HANDLE hProcess = ::GetCurrentProcess();
    if(!hProcess)
    return FALSE;
    if(!OpenProcessToken(hProcess,TOKEN_ADJUST_PRIVILEGES,&hToken))
    return FALSE;
    if ( !LookupPrivilegeValue( NULL, lpszPrivilege, &luid ) ) 
    return FALSE;

    tp.PrivilegeCount = 1;
    tp.Privileges[0].Luid = luid;
    tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
    // Enable the privilege or disable all privileges.
    AdjustTokenPrivileges(hToken,FALSE,&tp,sizeof(TOKEN_PRIVILEGES), 
    (PTOKEN_PRIVILEGES) NULL,(PDWORD) NULL); 
    }ExitWindowsEx(EWX_FORCE | EWX_POWEROFF, 0);
      

  3.   

    How to Shut Down the System
    The following example uses the ExitWindowsEx function to shut down the system. Shutting down flushes file buffers to disk and brings the system to a condition in which it is safe to turn off the computer. The application must first enable the SE_SHUTDOWN_NAME privilege. For more information, see Privileges.BOOL MySystemShutdown()
    {
       HANDLE hToken; 
       TOKEN_PRIVILEGES tkp; 
     
       // Get a token for this process. 
     
       if (!OpenProcessToken(GetCurrentProcess(), 
            TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) 
          return( FALSE ); 
     
       // Get the LUID for the 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 the shutdown privilege for this process. 
     
       AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, 
            (PTOKEN_PRIVILEGES)NULL, 0); 
     
       if (GetLastError() != ERROR_SUCCESS) 
          return FALSE; 
     
       // Shut down the system and force all applications to close. 
     
       if (!ExitWindowsEx(EWX_SHUTDOWN | EWX_FORCE, 0)) 
          return FALSE;    return TRUE;
    }