home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 382.img / SPRCTHG1.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-06-18  |  839b  |  39 lines

  1. @echo off
  2. echo
  3. echo INSTALL will create a sub-directory called SUPERC on the 
  4. echo hard drive you specify
  5. if not "%1" == "" goto l0
  6. echo
  7. echo Please specify the drive you wish to install SuperC on
  8. echo e.g. INSTALL C: to install on the c: drive
  9. goto exit
  10. :l0
  11. if not exist %1\SUPERC\*.* goto l4
  12. echo
  13. echo %1\SUPERC already exists. If you do not wish to install on 
  14. echo SuperC on %1, hit Control-C now.
  15. pause
  16. goto l5
  17. :l4
  18. md %1\SUPERC
  19. :l5
  20. if exist explos.pes goto l1
  21. echo
  22. echo Please switch current drive to the floppy drive from which you 
  23. echo wish to install SuperC and run INSTALL from there
  24. goto exit
  25. :l1
  26. copy *.* %1\SUPERC
  27. if exist h1shapes.pes goto l2
  28. echo
  29. echo Please insert disk 2
  30. pause
  31. :l2
  32. copy *.* %1\SUPERC
  33. if exist install.bat goto exit
  34. echo
  35. echo Please insert disk 1
  36. pause
  37. :exit
  38. @echo on
  39.