home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 277.img / NIGHT2.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-05-13  |  1KB  |  42 lines

  1. echo off
  2. if .%1 == . goto no_disk
  3. if not exist %1:disk.1 goto bad_disk
  4. if exist disk.1 goto bad_current
  5. echo Installing NIGHT HUNTER in your current directory from drive %1:.
  6. echo  
  7. echo The NIGHT HUNTER executable file will be placed in the current directory
  8. echo of the default disk drive, which is:
  9. cd
  10. echo It is assumed that you have enough disk space to contain all disks of
  11. echo NIGHT HUNTER.
  12. echo ---------------------------------------------------------------------
  13. echo If this information is not acceptable, press Ctrl-Break.  Otherwise
  14. pause
  15. echo NIGHT HUNTER installation in progress...
  16. mkdir cga
  17. :wait_disk_1
  18. if exist %1:\disk.1 goto disk_1_in
  19. echo Insert disk 1 and press any key
  20. pause
  21. goto wait_disk_1
  22. :disk_1_in
  23. copy %1:\current.bat >nul:
  24. goto next_bat
  25. :no_disk
  26. echo You need to specify a disk drive letter of the original.
  27. echo If you typed A:INSTALL to run this batch file, you should type A:INSTALL A.
  28. goto done
  29. :bad_disk
  30. echo The disk drive specified (%1) is incorrect. If the NIGHT HUNTER diskette is
  31. echo in the A: drive, you should type A:INSTALL A.
  32. goto done
  33. :bad_current
  34. echo You're trying to copy NIGHT HUNTER onto itself!
  35. echo The current drive should be the disk with enough free space to hold all disks
  36. echo of NIGHT HUNTER.  If you are going to use NIGHT HUNTER on the distribution
  37. echo disks (not recommended), it does not have to be installed.
  38. goto done
  39. :next_bat
  40. current.bat %1
  41. :done
  42.