home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 10 / 1995-09_Disc_10.iso / bbeast / instbatt.bat < prev   
DOS Batch File  |  1995-06-29  |  1KB  |  53 lines

  1. cls
  2. @echo off
  3. @echo            ╔══════════════════════════════════╗
  4. @echo            ║  Battle Beast Installation Notes ║
  5. @echo            ╚══════════════════════════════════╝
  6. @echo .
  7. @echo        Battle Beast is a Windows based game.
  8. @echo .
  9. @echo        You can install the game to your hard-drive
  10. @echo        or you can set it up to run from the CD.
  11. @echo .
  12. @echo        Select from one of the following options:
  13. @echo        1. Hard Drive installation
  14. @echo        2. Install to run off of CD-ROM
  15. @echo        3. Windows '95 Note 
  16. @echo        4. E(X)it 
  17. @echo .
  18. @echo        Please enter a choice: 1,2,3,4
  19. choice /c:1234x /n
  20. if errorlevel 5 goto end
  21. if errorlevel 4 goto end
  22. if errorlevel 3 goto w95
  23. if errorlevel 2 goto vpr
  24. if errorlevel 1 goto vpi
  25.  
  26. :vpi
  27. CLS
  28. CD\BBEAST
  29. CALL WIN HDSETUP.EXE
  30. goto end
  31.  
  32. :vpr
  33. CLS
  34. CD\BBEAST
  35. CALL WIN CDSETUP.EXE
  36. goto end
  37.  
  38. :w95
  39. cls
  40. @echo off
  41. @ECHO          This installation will not work for
  42. @echo          Windows '95. To install the game,
  43. @echo          exit our front-end, go to your 
  44. @echo          Windows '95 program manager and 
  45. @echo          load the game through Windows '95.
  46. @echo          The game is located in the \BBEAST 
  47. @echo          directory on the CD.
  48. @echo .
  49. pause
  50. goto end
  51.  
  52. :end
  53.