home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Club 210: Light Red
/
Club_Software_210_Light_Red_Micro_Star_1997.iso
/
menu2.bat
< prev
next >
Wrap
DOS Batch File
|
1996-05-09
|
498b
|
19 lines
echo off
cls
rem This is a basic shell for the launcher program. The launcher.exe program
rem generates the _launch.bat file, which executes the desired program;
rem this batch file repeatedly calls the launcher.exe program until the
rem user desires the usual exit.
if exist c:\_ylaunch.bat del c:\_ylaunch.bat
:start
launcher.exe spam
rem choice
if errorlevel 1 goto runProgram
if errorlevel 0 goto end
:runProgram
call c:\_ylaunch.bat
rem del c:\_ylaunch.bat
goto start
:end