不会不好用吧,都是这样用的呀ExitWindowsEx(UINT uFlags,DWORD dwReserved);
EWX_FORCE=4; //关闭所有程序并以其他用户身份登录
EWX_LOGOFF=0; //重新启动计算机并切换到MS-DOS方式
EWX_REBOOT=2; //重新启动计算机
EWX_SHUTDOWN=1;//关闭计算机

解决方案 »

  1.   

    我看的介绍这个函数的文章上写:先关闭程序,再关机,是不是这样?要是程序都关了,还怎么执行这个函数呀?我是这样写的:ExitWindowsEx(EWX_SHUTDOWN,0),有什么地方不对?
      

  2.   

    Windows 2000上要先用AdjustTokenPrivileges设置。新的msdn中有讲。
      

  3.   

    请victorchen_2000说详细一点好吗?怎么设置?
      

  4.   

    这个函数是向系统发出了关闭消息,系统得到这个消息,会先处理还在堆栈中的程序,最后关机。
    这也是windwos的消息处理机制呀。to victorchen_2000: 哪里能得到新的msdn?ms的网站不提供免费下载吧
      

  5.   

    AdjustTokenPrivileges
    The AdjustTokenPrivileges function enables or disables privileges in the specified access token. Enabling or disabling privileges in an access token requires TOKEN_ADJUST_PRIVILEGES access. BOOL AdjustTokenPrivileges(
      HANDLE TokenHandle,              // handle to token
      BOOL DisableAllPrivileges,       // disabling option
      PTOKEN_PRIVILEGES NewState,      // privilege information
      DWORD BufferLength,              // size of buffer
      PTOKEN_PRIVILEGES PreviousState, // original state buffer
      PDWORD ReturnLength              // required buffer size
    );
    Parameters
    TokenHandle 
    [in] Handle to the access token that contains the privileges to be modified. The handle must have TOKEN_ADJUST_PRIVILEGES access to the token. If the PreviousState parameter is not NULL, the handle must also have TOKEN_QUERY access. 
    DisableAllPrivileges 
    [in] Specifies whether the function disables all of the token's privileges. If this value is TRUE, the function disables all privileges and ignores the NewState parameter. If it is FALSE, the function modifies privileges based on the information pointed to by the NewState parameter. 
    NewState 
    [in] Pointer to a TOKEN_PRIVILEGES structure that specifies an array of privileges and their attributes. If the DisableAllPrivileges parameter is FALSE, AdjustTokenPrivileges enables or disables these privileges for the token. If you set the SE_PRIVILEGE_ENABLED attribute for a privilege, the function enables that privilege; otherwise, it disables the privilege. 
    If DisableAllPrivileges is TRUE, the function ignores this parameter. BufferLength 
    [in] Specifies the size, in bytes, of the buffer pointed to by the PreviousState parameter. This parameter can be zero if the PreviousState parameter is NULL. 
    PreviousState 
    [out] Pointer to a buffer that the function fills with a TOKEN_PRIVILEGES structure containing the previous state of any privileges the function modifies. This parameter can be NULL. 
    If you specify a buffer that is too small to receive the complete list of modified privileges, the function fails and does not adjust any privileges. In this case, the function sets the variable pointed to by the ReturnLength parameter to the number of bytes required to hold the complete list of modified privileges. ReturnLength 
    [out] Pointer to a variable that receives the required size, in bytes, of the buffer pointed to by the PreviousState parameter. This parameter can be NULL if PreviousState is NULL. 
    Return Values
    If the function succeeds, the return value is nonzero. To determine whether the function adjusted all of the specified privileges, call GetLastError, which returns one of the following values when the function succeeds:Value Description 
    ERROR_SUCCESS The function adjusted all specified privileges. 
    ERROR_NOT_ALL_ASSIGNED The token does not have one or more of the privileges specified in the NewState parameter. The function may succeed with this error value even if no privileges were adjusted. The PreviousState parameter indicates the privileges that were adjusted. 
    If the function fails, the return value is zero. To get extended error information, call GetLastError. Res
    The AdjustTokenPrivileges function cannot add new privileges to the access token. It can only enable or disable the token's existing privileges. To determine the token's privileges, call the GetTokenInformation function. Note  The NewState parameter can specify privileges that the token does not have, without causing the function to fail. In this case, the function adjusts the privileges that the token does have, ignores the other privileges, and returns success. Call the GetLastError function to determine whether the function adjusted all of the specified privileges. The PreviousState parameter indicates the privileges that were adjusted.The PreviousState parameter retrieves a TOKEN_PRIVILEGES structure containing the the original state of the adjusted privileges. To restore the original state, pass the PreviousState pointer as the NewState parameter in a subsequent call to the AdjustTokenPrivileges function Requirements 
      Windows NT/2000: Requires Windows NT 3.1 or later.
      Header: Declared in Winbase.h; include Windows.h.
      Library: Use Advapi32.lib.
      

  6.   

    msdn不是免费的,不过有盗版的,BCB/Delphi里也有win32 API帮助,基本可以满足要求。
    里面可以查到AdjustTokenPrivileges。