home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo Geben Sie eine Zahl oder einen Buchstaben ein.
- echo.
- echo 0: Indy 4 auf Festplatte installieren
- echo 1: Indy 4 von CD spielen
- echo.
- echo E: Ende
- echo R: Readme Datei anzeigen
- echo.
- echo Bitte wählen Sie ein Spiel aus.
- echo.
- choice /N /c:01ER >nul
- if errorlevel = 4 goto readme
- if errorlevel = 3 goto end
- if errorlevel = 2 goto ij4
- if errorlevel = 1 goto hdinst
-
- :readme
- type readme.txt |more
- goto end
-
- :ij4
- cd ij4
- ..\add\insti4cd
- ..\add\save
- atlantis
- ..\add\save /q
- cd..
- goto end
-
- :hdinst
- cd add
- cdcopy
- cd..
- goto end
-
- :end
-
-