home *** CD-ROM | disk | FTP | other *** search
/ Level 1997 May / Level_1997-05_cd.bin / fly / install.bat < prev    next >
Encoding:
DOS Batch File  |  1997-04-22  |  2.7 KB  |  110 lines

  1. CLS
  2. @echo off
  3. if "%1"=="" goto syntax
  4. if "%1"=="e" goto english
  5. if "%1"=="d" goto german
  6. if "%1"=="f" goto french
  7. if "%1"=="s" goto spanish
  8. if "%1"=="i" goto italian
  9. goto syntax
  10.  
  11. :english
  12. rem cd fly
  13. echo.
  14. echo When installing the Flying Corps Demo please choose the Medium or Largest
  15. echo installation size.  Once the installation has been completed please read
  16. echo the README.TXT file for more information on the Demo.
  17. echo.
  18. PAUSE
  19. install.exe
  20. echo.
  21. echo Install complete please type: `FLY` to run the demo.
  22. goto end
  23.  
  24. :german
  25. echo.
  26. echo Wählen Sie zur Installation der Flying Corps-Demo entweder die Standard-
  27. echo oder die maximale echo Installationsgröße, und lesen Sie nach Abschluß
  28. echo der Installation bitte die Datei LIESMICH.TXT, echo in der zusätzliche
  29. echo Infos zur Demo enthalten sind.
  30. echo.
  31. rem cd fly
  32. PAUSE
  33. install.exe
  34. move german.dir english\text\dir.dir
  35. move german.ori english\text\dir.ori
  36. dirmake english\text -x
  37. cls
  38. echo.
  39. echo Nach der Installation 'FLY' eingeben, um die Demo auszuführen.
  40. echo.
  41. goto end
  42.  
  43. :french
  44. rem cd fly
  45. echo.
  46. echo Quand vous installez le CD démo de Flying Corps, choisissez
  47. echo I`installation Medium ou Complète.  Une fois I`installation terminée,
  48. echo lisez le fichier READMEF.TXT pour obtenir plus d`Informations sur la démo.
  49. echo.
  50. PAUSE
  51. install.exe
  52. move french.dir english\text\dir.dir
  53. move french.ori english\text\dir.ori
  54. dirmake english\text -x
  55. cls
  56. echo.
  57. echo Installation complète : tapez FLY pour lancer la démo.
  58. echo.
  59. goto end
  60.  
  61. :spanish
  62. rem cd fly
  63. echo.
  64. echo Cuando instales la Demo de Flying Corps, elige el tamaño de instalación
  65. echo media o grande.  Una vez completada la instalación lee el archivo
  66. echo READMES.TXT para tener mayor información de la Demo.
  67. echo.
  68. PAUSE
  69. install.exe
  70. move spanish.dir english\text\dir.dir
  71. move spanish.ori english\text\dir.ori
  72. dirmake english\text -x
  73. cls
  74. echo.
  75. echo Instalación completa, escribe: "FLY" para arrancar la demo.
  76. goto end
  77.  
  78. :italian
  79. rem cd fly
  80. echo.
  81. echo Quando installi la Demo di Flying Corps scegli il tipo di installazione
  82. echo Media o Massima. Una echo volta completata l'installazione leggi il file
  83. echo READMEI.TXT per maggiori informazioni sulla echo Demo.
  84. echo.
  85. PAUSE
  86. install.exe
  87. move italian.dir english\text\dir.dir
  88. move italian.ori english\text\dir.ori
  89. dirmake english\text -x
  90. cls
  91. echo.
  92. echo A fine installazione digita: 'FLY' per far partire la Demo.
  93. echo.
  94. goto end
  95.  
  96.  
  97. :syntax
  98. echo.
  99. echo INSTALL E (Please Press Enter)             (English)
  100. echo INSTALL D (Drücken Sie die Eingabetaste.)  (Deutsch)
  101. echo INSTALL F (tapez Entrée)                   (Français)
  102. echo INSTALL S (Por favor pulsa Intro)          (Español)
  103. echo INSTALL I (Premi Invio)                    (Italiano)
  104.  
  105.  
  106. goto end
  107.  
  108.  
  109. :end
  110.