home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 395.img / DLORD1.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-10-23  |  1KB  |  39 lines

  1. echo off
  2. if "%1"=="" goto end
  3. if "%1"=="do_it" goto filecopy
  4. echo This routine creates a directory named DRAGON and then copies the files from
  5. echo the program disks.  When done, type "DLORD" and press ENTER to run the game...
  6. echo  
  7. echo You may press Ctrl-C to abort this routine. . .
  8. pause
  9. if "%1"=="c" c:
  10. if "%1"=="C" c:
  11. if "%1"=="D" d:
  12. if "%1"=="d" d:
  13. if not exist DRAGON md DRAGON
  14. cd DRAGON
  15. copy a:install.bat
  16. install do_it
  17. :filecopy
  18. copy a:*.*
  19. echo Put disk 2 into drive A:
  20. pause
  21. copy a:*.*
  22. echo Put disk 3 into drive A:
  23. pause
  24. copy a:*.*
  25. echo Put disk 4 into drive A:
  26. pause
  27. copy a:*.*
  28. goto out
  29. :end
  30. cls
  31. echo  
  32. echo To install Dragon Lord on your hard disk, type "INSTALL C" to install on the C
  33. echo drive, or "INSTALL D"  to install on the D drive.  The program files will
  34. echo be copied to a directory called DRAGON on the drive you specify.
  35. echo To install from the B drive, type "INSTALLB C" to install on drive C, or
  36. echo "INSTALLB D" to install on drive D.
  37. :out
  38. echo on
  39.