home *** CD-ROM | disk | FTP | other *** search
- CLS
- @echo off
- if "%1"=="" goto syntax
- if "%1"=="e" goto english
- if "%1"=="d" goto german
- if "%1"=="f" goto french
- if "%1"=="s" goto spanish
- if "%1"=="i" goto italian
- goto syntax
-
- :english
- rem cd fly
- echo.
- echo When installing the Flying Corps Demo please choose the Medium or Largest
- echo installation size. Once the installation has been completed please read
- echo the README.TXT file for more information on the Demo.
- echo.
- PAUSE
- install.exe
- echo.
- echo Install complete please type: `FLY` to run the demo.
- goto end
-
- :german
- echo.
- echo Wählen Sie zur Installation der Flying Corps-Demo entweder die Standard-
- echo oder die maximale echo Installationsgröße, und lesen Sie nach Abschluß
- echo der Installation bitte die Datei LIESMICH.TXT, echo in der zusätzliche
- echo Infos zur Demo enthalten sind.
- echo.
- rem cd fly
- PAUSE
- install.exe
- move german.dir english\text\dir.dir
- move german.ori english\text\dir.ori
- dirmake english\text -x
- cls
- echo.
- echo Nach der Installation 'FLY' eingeben, um die Demo auszuführen.
- echo.
- goto end
-
- :french
- rem cd fly
- echo.
- echo Quand vous installez le CD démo de Flying Corps, choisissez
- echo I`installation Medium ou Complète. Une fois I`installation terminée,
- echo lisez le fichier READMEF.TXT pour obtenir plus d`Informations sur la démo.
- echo.
- PAUSE
- install.exe
- move french.dir english\text\dir.dir
- move french.ori english\text\dir.ori
- dirmake english\text -x
- cls
- echo.
- echo Installation complète : tapez FLY pour lancer la démo.
- echo.
- goto end
-
- :spanish
- rem cd fly
- echo.
- echo Cuando instales la Demo de Flying Corps, elige el tamaño de instalación
- echo media o grande. Una vez completada la instalación lee el archivo
- echo READMES.TXT para tener mayor información de la Demo.
- echo.
- PAUSE
- install.exe
- move spanish.dir english\text\dir.dir
- move spanish.ori english\text\dir.ori
- dirmake english\text -x
- cls
- echo.
- echo Instalación completa, escribe: "FLY" para arrancar la demo.
- goto end
-
- :italian
- rem cd fly
- echo.
- echo Quando installi la Demo di Flying Corps scegli il tipo di installazione
- echo Media o Massima. Una echo volta completata l'installazione leggi il file
- echo READMEI.TXT per maggiori informazioni sulla echo Demo.
- echo.
- PAUSE
- install.exe
- move italian.dir english\text\dir.dir
- move italian.ori english\text\dir.ori
- dirmake english\text -x
- cls
- echo.
- echo A fine installazione digita: 'FLY' per far partire la Demo.
- echo.
- goto end
-
-
- :syntax
- echo.
- echo INSTALL E (Please Press Enter) (English)
- echo INSTALL D (Drücken Sie die Eingabetaste.) (Deutsch)
- echo INSTALL F (tapez Entrée) (Français)
- echo INSTALL S (Por favor pulsa Intro) (Español)
- echo INSTALL I (Premi Invio) (Italiano)
-
-
- goto end
-
-
- :end
-