Mega Code Archive

 
Categories / Delphi / API
 

How do i restart windows in code

Question: How do I restart Windows in code? Answer: The Windows API function ExitWindows() is incorrectly documented. There are three constants available for the first parameter, and the second parameter is used when exiting Windows to start a DOS program: EW_RESTARTWINDOWS EW_REBOOTSYSTEM EW_EXITANDEXECAPP Example: ExitWindows(EW_RESTARTWINDOWS, 0 );