home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 3 / PCFORMAT3.iso / FIFA.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-05-18  |  758b  |  44 lines

  1. @echo off
  2. :start
  3. cls
  4. echo.
  5. echo.
  6. echo            * * * FIFA INTERNATIONAL SOCCER DEMO * * *
  7. echo.
  8. echo               * * * PRESENTED WITH PC FORMAT * * * 
  9. echo.
  10. echo            A.......Install Demo
  11. echo            B.......View instructions & Playing tips
  12. echo            C.......Exit
  13. echo.
  14. echo.
  15. what c "Enter Selection"ABC
  16.  
  17. if %WHAT%==A Goto install
  18. if %WHAT%==B goto readme
  19. if %WHAT%==C goto exit
  20.  
  21. :install
  22. cls
  23. echo.
  24. echo Please enter the Hard Disk Drive to install to....
  25. echo.
  26. echo Type 'Drive' followed by the letter (ie. C:)
  27. echo.
  28. echo An example would be from the Dos prompt - DRIVE C:  (enter)
  29. echo.
  30. goto end
  31.  
  32. :readme
  33. browse readme.txt
  34. goto start
  35.  
  36. :exit
  37. cls
  38. echo.
  39. echo Dos me up.......
  40. echo.
  41.  
  42. goto end
  43. :end
  44.