home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1996 November / PCA11_96.ISO / demos / spdemo / install / dos / install.bat < prev    next >
Encoding:
DOS Batch File  |  1996-08-12  |  357 b   |  23 lines

  1. @echo off
  2. :choose
  3. cls
  4. echo Scorched Planet Installation
  5. echo ============================
  6. echo.
  7. echo 1) Francais
  8. echo 2) Deutsch
  9. echo.
  10. choice /c:12 /n Which language do you wish to use?
  11. if errorlevel 2 goto german
  12. if errorlevel 1 goto french
  13. goto choose
  14.  
  15. :french
  16. french\instpro -afrench
  17. goto end
  18.  
  19. :german
  20. german\instpro -agerman
  21.  
  22. :end
  23.