Question and Answer Database FAQ2502D.txt How do I restart Windows in code. Category :Windows API Platform :All Product :All 32 bit 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 ); 7/16/98 4:31:28 PM
Last Modified: 01-SEP-99