home *** CD-ROM | disk | FTP | other *** search
/ Mission Pom-Bär: The Snack 'N' Run Game / POMBAER.bin / install.bat < prev    next >
DOS Batch File  |  1997-09-26  |  1KB  |  56 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo ──────────────────────────────────────────────────────────────────────────────
  5. echo                            MISSION POM-BAER INSTALLATION
  6. echo.
  7. echo            To install the game you have to choose between a small and
  8. echo             a large version (with or without 3D rendered animations)
  9. echo ──────────────────────────────────────────────────────────────────────────────
  10. echo.
  11. echo           PLEASE SELECT ONE OF THE FOLLOWING:
  12. echo           ───────────────────────────────────
  13. echo.
  14. echo           1       FULL INSTALLATION which will require about 30 MB
  15. echo                   free space on your harddisk. This version contains
  16. echo                   3D rendered animations.
  17. echo.
  18. echo           2       SMALL INSTALLATION which will require about 5 MB
  19. echo                   free space on your harddisk. This version comes
  20. echo                   without any 3D animations.
  21. echo.
  22. echo           3       Abort installation.
  23. echo ──────────────────────────────────────────────────────────────────────────────
  24. echo.
  25.  
  26. choice /N /C:123 Make your choice:
  27. if errorlevel 3 goto quit:
  28. if errorlevel 2 goto mini:
  29. if errorlevel 1 goto full:
  30.  
  31. :full
  32. cd full
  33. install.bat
  34. goto end
  35.  
  36. :mini
  37. cd mini
  38. install.bat
  39. goto end
  40.  
  41. :quit
  42. cls
  43. echo Installation aborted.
  44. goto end
  45.  
  46.  
  47. :end
  48. cd\
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.