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

  1. echo off
  2. echo ╔═══════════════════════════════════╗
  3. echo ║         Buckaroo Banzai's         ║
  4. echo ║      MEGA-Installer Batch File    ║
  5. echo ║                                   ║
  6. echo ║           for use with            ║
  7. echo ║                                   ║
  8. echo ║      The Learning Company's       ║
  9. echo ║                                   ║
  10. echo ║ CHALLENGE of the ANCIENT EMPIRES! ║
  11. echo ║                                   ║
  12. echo ╚═══════════════════════════════════╝
  13. echo Checking command line parameters.....
  14. if "%1" == "" goto :Bad
  15. goto :Good
  16. :Bad
  17. echo  
  18. echo Please specify the DrivePath to install to...
  19. echo IE: "install c:\cea"
  20. goto :Done
  21.  
  22. :Good
  23. if exist %1 goto :CopyFiles
  24. echo Creating directory %1
  25. mkdir %1
  26. :CopyFiles
  27. echo  
  28. echo Please put disk 1 in the current drive
  29. echo and then press any key.
  30. echo (If you are using a HD just hit a key)
  31. pause
  32. copy *.* %1
  33. if exist %1\SSA001.DAT goto :Finishup
  34. echo  
  35. echo Please put disk 2 in the current drive
  36. echo and then press any key.
  37. pause
  38. copy SSA001.DAT %1
  39. :Finishup
  40. CD %1
  41. echo To play, type "RUNME"
  42.  
  43. :Done
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.