home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 80.img / LOYFRM1.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1989-07-31  |  1KB  |  47 lines

  1. echo off
  2. cls
  3. echo This program will install Ys on your hard disk.
  4. echo Press Control-C to cancel installation.
  5. echo  
  6. echo Insert Ancient Land of Ys Program disk into drive and
  7. pause
  8. cls
  9. echo Installing Ys will take a few minutes.  Please wait...
  10. for %%x in (a: A: b: B: c: C: d: D: e: E:) do if "%1"=="%%x" goto continue3
  11. goto failure
  12. :continue3
  13. if exist %1ys.exe goto failure
  14. mkdir %1ys
  15. cd %1ys
  16. mkdir %1maps
  17. mkdir %1barter
  18. mkdir %1music
  19. mkdir %1fights
  20. copy *.* %1 >nul
  21. cls
  22. :failure2
  23. if exist border.pes goto cont2
  24. echo Insert Ancient Land of Ys Data disk into drive and
  25. pause
  26. goto failure2
  27. :cont2
  28. cls
  29. echo Installing Ys will take a few minutes.  Please wait...
  30. cd %1maps
  31. copy maps %1 >nul
  32. cd %1..\barter
  33. copy barter %1 >nul
  34. cd %1..\music
  35. copy music %1 >nul
  36. cd %1..\fights
  37. copy fights %1 >nul
  38. cd %1..
  39. copy *.* %1 >nul
  40. IF ERRORLEVEL 1 ECHO Not enough disk space.
  41. echo  
  42. echo Installation complete!
  43. goto end
  44. :failure
  45. echo Invalid drive specification.
  46. :end
  47.