home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 2.1 / 1996-02_Disc_2.1.iso / ftrduel / install.bat
DOS Batch File  |  1995-12-07  |  1KB  |  45 lines

  1. @echo off
  2. echo Installing Fighter Duel Demo
  3. echo.
  4. echo.
  5. echo  This demo will install files to a
  6. echo  \FDDEMO directory on your C: drive.
  7. echo.
  8. echo  Do you wish to install to a different
  9. echo  drive?
  10. choice 
  11. if errorlevel 2 goto duel
  12. if errorlevel 1 goto hd
  13.  
  14. :duel
  15. md c:\FDDEMO
  16. copy \FTRDUEL\FDDEMO\*.* c:\FDDEMO
  17. C:
  18. cd c:\FDDEMO
  19. FDDEMO
  20. echo ________________________________________________________________________
  21. echo Please see the file Readme.txt for keyboard commands and troubleshooting.
  22. echo To run the demo now, type FDDEMO followed by a return.
  23. echo To run the demo at a later time, change to the c:\FDDEMO directory
  24. echo and type FDDEMO followed by a return.
  25. goto end
  26. :hd
  27. cls
  28. echo.
  29. echo.
  30. echo.
  31. echo  If you wish to install FIGHTER DUEL
  32. echo  to a hard drive other than the
  33. echo  C: drive, type:
  34. echo.
  35. echo  MD X:\FDDEMO (where X is the letter of the drive you want to instal to)
  36. echo  COPY X:\FTRDUEL\FDDEMO\*.* X:\FDDEMO (where X is your hard drive letter)
  37. echo.
  38. echo  Then change to the FDDEMO directory on your hard drive and
  39. echo  type FDDEMO.
  40. goto end
  41.  
  42. :end
  43.  
  44.  
  45.