how to reboot the sys
-
Hi How can i reboot my System , if an event generates Thanku.. Usha
-
Hi How can i reboot my System , if an event generates Thanku.. Usha
BOOL ExitWindowsEx( UINT uFlags, // shutdown operation DWORD dwReserved // reserved ); Parameters uFlags Specifies the type of shutdown. This parameter must include one of the following values: Value Meaning 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. EWX_POWEROFF Shuts down the system and turns off the power. The system must support the power-off feature. Windows NT: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. EWX_REBOOT Shuts down the system and then restarts the system. Windows NT: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. 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. Windows NT: The calling process must have the SE_SHUTDOWN_NAME privilege. For more information, see the following Remarks section. This parameter can optionally include the following values: Value Meaning 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. EWX_FORCEIFHUNG Windows NT 5.0 and later: 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. dwReserved Reserved; this parameter is ignored.
-
Hi How can i reboot my System , if an event generates Thanku.. Usha
-
ExitWindowsEx(EWX_REBOOT,EWX_FORCE);
MSDN link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/how_to_shut_down_the_system.asp[^] this is this. -
Hi How can i reboot my System , if an event generates Thanku.. Usha
usha_dolly wrote:
ForumVisual C++ Subject:Re: how to reboot the sys Sender:usha_dolly Date:4:02 9 Dec '05 Hi How can i reboot my System , if an event generates
try InitiateSystemShutdown(..)
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV