@echo off&CD %~dp0&call SCRIPTS\SCRIPT_MNGR.cmd :: ============================================= :: INIT %VarsSystemEtc% & %VarsLocalStrings% & %CreateHelp% %Intro% & %AutoLang% %CreateStartInf% & %PrintINFhead% & %CreateReset% :: Your code below here: :: ============================================= echo [SourceDisksFiles] %OUT% echo Files\XP_Reg.exe=2,,1 %OUT% if not exist Files md Files if "%OSVersion%" == "WIN_XP" ( %MSG% "Copy Reg.exe from XP host OS ..." copy "%SystemRoot%\System32\Reg.exe" Files\XP_Reg.exe goto _done ) if "%Source_OSVersion%" == "WIN_XP" ( %MSG% "Expand Reg.exe from XP Source CD ..." expand "%Source_Path%\REG.EX_" Files\XP_Reg.exe goto _done ) :_done if not exist "Files\%Config_Success_File%" ( %MessageBox% "INFORMATION" "No XP reg.exe found" "No XP Reg.exe has been found. Configuration aborted." call RESET.cmd goto :EOF ) :: ============================================= :: EXTRO %Extro% & goto :EOF :: Any subroutines below here: :: =============================================