WIN2000有没有退出系统并重新启动的API函数?(50分)

  • 主题发起人 主题发起人 canson
  • 开始时间 开始时间
看一下我的回答
 
BOOL ExitWindowsEx(<br>&nbsp; UINT uFlags, &nbsp; &nbsp; &nbsp; // shutdown operation<br>&nbsp; DWORD dwReserved &nbsp; // reserved<br>);<br>Parameters<br>uFlags <br>[in] Specifies the type of shutdown. This parameter must include one of the following values. Value Meaning <br>EWX_LOGOFF Shuts down all processes running in the security context of the process that called the ExitWindowsEx function. Then it logs the user off. <br>EWX_POWEROFF Shuts down the system and turns off the power. The system must support the power-off feature. <br>Windows NT/2000: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. <br>&nbsp;<br>EWX_REBOOT Shuts down the system and then restarts the system. <br>Windows NT/2000: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. <br>&nbsp;<br>EWX_SHUTDOWN Shuts down the system to a point at which it is safe to turn off the power. All file buffers have been flushed to disk, and all running processes have stopped. <br>Windows NT/2000: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. <br>&nbsp;<br><br><br>This parameter can optionally include the following values. Value Meaning <br>EWX_FORCE Forces processes to terminate. When this flag is set, the system does not send the WM_QUERYENDSESSION and WM_ENDSESSION messages. This can cause the applications to lose data. Therefore, you should only use this flag in an emergency. <br>EWX_FORCEIFHUNG Windows 2000: Forces processes to terminate if they do not respond to the WM_QUERYENDSESSION or WM_ENDSESSION message. This flag is ignored if EWX_FORCE is used. <br><br><br><br>dwReserved <br>[in] Reserved; this parameter is ignored. <br>Return Values<br>If the function succeeds, the return value is nonzero.<br><br>If the function fails, the return value is zero. To get extended error information, call GetLastError. <br><br>Remarks<br>The ExitWindowsEx function returns as soon as it has initiated the shutdown. The shutdown or logoff then proceeds asynchronously. <br><br>During a shutdown or log-off operation, applications that are shut down are allowed a specific amount of time to respond to the shutdown request. If the time expires, the system displays a dialog box that allows the user to forcibly shut down the application, to retry the shutdown, or to cancel the shutdown request. If the EWX_FORCE value is specified, the system always forces applications to close and does not display the dialog box. <br><br>Windows 2000: If the EWX_FORCEIFHUNG value is specified, the system forces hung applications to close and does not display the dialog box. <br><br>Windows 95/98: Because of the design of the shell, calling ExitWindowsEx with EWX_FORCE fails to completely log off the user (the system terminates the applications and displays the Enter Windows Password dialog box, however, the user's desktop remains.) To log off the user forcibly, terminate the Explorer process before calling ExitWindowsEx with EWX_LOGOFF and EWX_FORCE. <br><br>Console processes receive a separate notification message, CTRL_SHUTDOWN_EVENT or CTRL_LOGOFF_EVENT, as the situation warrants. A console process routes these messages to its HandlerRoutine function. ExitWindowsEx sends these notification messages asynchronously; thus, an application cannot assume that the console notification messages have been handled when a call to ExitWindowsEx returns. <br><br>Windows NT/2000: To shut down or restart the system, the calling process must use the AdjustTokenPrivileges function to enable the SE_SHUTDOWN_NAME privilege. For more information about security privileges, see Privileges. <br><br>Windows 95/98: ExitWindowEx does not work from a console application, as it does on Windows NT/Windows 2000. <br><br>Requirements <br>&nbsp; Windows NT/2000: Requires Windows NT 3.1 or later.<br>&nbsp; Windows 95/98: Requires Windows 95 or later.<br>&nbsp; Header: Declared in Winuser.h; include Windows.h.<br>&nbsp; Library: Use User32.lib.<br><br>See Also<br>System Shutdown Overview, System Shutdown Functions, AdjustTokenPrivileges, HandlerRoutine <br><br>
 
来晚了!!!<br>mikedeakins说得已经很详细了!给分吧! 
 
sorry!cactus123456,你的回答是什么?<br>mikedeakins,可以给出原代码吗?
 
专用于NT,2000server<br><br>function SetPrivilege(aPrivilegeName : string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; aEnabled : boolean ): boolean; <br>var <br>&nbsp; TPPrev, <br>&nbsp; TP &nbsp; &nbsp; &nbsp; &nbsp; : TTokenPrivileges; <br>&nbsp; Token &nbsp; &nbsp; &nbsp;: THandle;<br>&nbsp; dwRetLen &nbsp; : DWord; <br>begin <br>&nbsp; Result := False; <br>&nbsp; OpenProcessToken(GetCurrentProcess,TOKEN_ADJUST_PRIVILEGES<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;or TOKEN_QUERY, Token );<br><br>&nbsp; TP.PrivilegeCount := 1; <br>&nbsp; if( LookupPrivilegeValue(nil, PChar( aPrivilegeName ), <br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TP.Privileges[ 0 ].LUID ) ) then<br>&nbsp; begin <br>&nbsp; &nbsp; if( aEnabled )then<br>&nbsp; &nbsp; &nbsp; TP.Privileges[0].Attributes:= SE_PRIVILEGE_ENABLED <br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; TP.Privileges[0].Attributes:= 0; <br><br>&nbsp; &nbsp; dwRetLen := 0;<br>&nbsp; &nbsp; Result := AdjustTokenPrivileges(Token,False,TP, <br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SizeOf( TPPrev ), <br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; TPPrev,dwRetLen ); <br>&nbsp; end;<br><br>&nbsp; CloseHandle( Token ); <br>end; <br><br>function WinExit( iFlags : integer ) : boolean;<br>// &nbsp; possible Flags: <br>// &nbsp; EWX_LOGOFF<br>// &nbsp; EWX_REBOOT<br>// &nbsp; EWX_SHUTDOWN<br>begin<br>&nbsp; Result := True;<br>&nbsp; if( SetPrivilege( 'SeShutdownPrivilege', true ) ) then<br>&nbsp; begin<br>&nbsp; &nbsp; if( not ExitWindowsEx( iFlags, 0 ) )then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; Result := False;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp; SetPrivilege( 'SeShutdownPrivilege', False )<br>&nbsp; end<br>&nbsp; else<br>&nbsp; begin<br>&nbsp; &nbsp; Result := False;<br>&nbsp; end;<br>end;<br><br>欢迎访问vcl控件讨论区 http://vcl.xilubbs.com<br>
 
多人接受答案了。
 
后退
顶部