home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Joker 1998 June
/
JOKER0698B.mdf
/
Share
/
DosGames
/
DICEIT!
/
START.BAT
< prev
Wrap
DOS Batch File
|
1998-02-10
|
1KB
|
53 lines
@echo off
:Anfang
cls
echo.
echo ┌────────────────────────────────────────────────┐
echo │ COMETWARE-START DiceIT!-Edition │
echo ├────────────────────────────────────────────────┤
echo │ F R E E W A R E │
echo ├────────────────────────────────────────────────┤
echo │ │
echo │ A DiceIT!-Demo Starten │
echo │ B DiceIT!-Demo Installation │
echo │ C DiceIT!-Demo Deinstallation │
echo │ D Readme.txt lesen │
echo │ E Beenden │
echo │ │
echo └────────────────────────────────────────────────┘
echo (c) by C.C.Clay
choice /c:abcde /n Bitte wählen:
if errorlevel 5 goto Ende
if errorlevel 4 goto Readme
if errorlevel 3 goto DeInstall
if errorlevel 2 goto Install
if errorlevel 1 goto Diceit
:Readme
echo.
echo Readme-Datei wird geladen...
README.EXE
goto Anfang
:Deinstall
echo.
echo DeInstall wird geladen...
cd DATA
comet_04.BAT
:Install
echo.
echo Install wird geladen...
cd DATA
comet_03.bat
:Diceit
cd DATA
COMET_02.bat
cd..
goto Anfang
:Ende
cd..
cls