home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 302.img / ISC2.ZIP / INSTALL.BAT next >
DOS Batch File  |  1990-10-08  |  745b  |  29 lines

  1. echo off
  2. :NewDir
  3. REM this installs new Footy subdirectory; errorlevel 0 means success
  4. MD C:\FOOTY
  5. MD C:\FOOTY\SPL
  6. MD C:\FOOTY\Data
  7. if errorlevel 0 goto CopyFiles
  8. cls
  9. echo Error creating C:\Footy subdirectory, do not use install program
  10. echo You must install Football manually. Sorry.
  11. goto End
  12. :CopyFiles
  13. REM this copies files from floppies in to C:\Footy
  14. cls
  15. echo Insert disk labelled "A" into your A: disk drive, then...
  16. PAUSE
  17. copy A:*.* C:\FOOTY
  18. copy A:\SPL\*.* C:\FOOTY\SPL\*.*
  19. copy A:\Data\*.* C:\FOOTY\Data\*.*
  20. cls
  21. echo Insert disk labelled "B" into your A: disk drive, then...
  22. PAUSE
  23. copy A:\Data\*.* C:\FOOTY\Data\*.*
  24. cls
  25. goto End
  26. :End
  27. echo INSTALL FINISHED
  28. echo Please ignore any "Batch file missing" message
  29.