home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 343.img / KOSINC1.ZIP / 3INSTALL.BAT next >
DOS Batch File  |  1990-11-02  |  1KB  |  48 lines

  1. echo off
  2. REM this program installs for 3.50 (720K) disks only
  3. REM test for existing KNIGHTS subdirectory
  4. if EXIST %1:\MPS\KNIGHTS\flight.exe goto ClearDir
  5. if EXIST %1:\MPS\KNIGHTS\game.exe goto ClearDir
  6. goto NewDir
  7.  
  8. :ClearDir
  9. REM  this will clear the subdirectory %1:\MPS\KNIGHTS
  10. cls
  11. echo Please answer "Y" to following question, it clears out old KNIGHTS files
  12. erase %1:\MPS\KNIGHTS\*.*
  13. goto CopyFiles
  14.  
  15. :NewDir
  16. REM  this installs new KNIGHTS subdirectory; errorlevel 0 means success
  17. MD %1:\MPS
  18. MD %1:\MPS\KNIGHTS
  19. if errorlevel 0 goto CopyFiles
  20. cls
  21. echo Error creating %1:\MPS\KNIGHTS subdirectory, do not use INSTALL program.
  22. echo You must install KNIGHTS OF THE SKY manually. Sorry. 
  23. goto End
  24.  
  25. :CopyFiles
  26. REM  this copies files from floppies into %1:\MPS\KNIGHTS
  27.  
  28. cls
  29. echo Insert disk labeled "A" into your A: disk drive, then...
  30. PAUSE
  31. copy A:*.* %1:\MPS\KNIGHTS
  32. copy A:START.BAT %1:\MPS\KNIGHTS.BAT
  33.  
  34. cls
  35. echo Insert disk labeled "B" into your A: disk drive, then...
  36. PAUSE
  37. copy A:*.* %1:\MPS\KNIGHTS
  38.  
  39. cls
  40. %1:
  41. cd \MPS
  42. echo Type "KNIGHTS" to begin game
  43.  
  44. :End
  45. echo INSTALL FINISHED
  46. echo Please ignore any "Batch file missing" message
  47. erase %1:\3install.bat
  48.