home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 318.img / TCUP-INC.ZIP / HARD.BAT < prev    next >
DOS Batch File  |  1990-01-01  |  1KB  |  53 lines

  1. echo off
  2. cls
  3. if "%2" == "B" goto BACK
  4. echo *****************************************************
  5. echo *         Tennis-Cup  Harddisk-Installation         *
  6. echo *****************************************************
  7. if "%1" == "" goto NOP
  8. md %1\tennis
  9. copy hard.bat %1\tennis >nul
  10. %1\tennis\hard %1 B
  11. goto End
  12. :BACK
  13. cls
  14. echo  Copying files from Disc A(1) to drive "%1"
  15. copy *.* %1\tennis >nul
  16. :TWO
  17. cls
  18. echo Please insert 'Tennis-Cup B(2)' disc
  19. pause
  20. if not exist pc.msk goto TWO  
  21. cls
  22. echo  Copying files from Disc B(2) to drive "%1"
  23. copy *.* %1\tennis >nul
  24. :THR
  25. cls
  26. echo Please insert 'Tennis-Cup C(3)' disc
  27. pause
  28. if not exist pc.ega goto THR
  29. cls
  30. echo  Copying files from Disc C(3) to drive "%1"
  31. copy *.* %1\tennis >nul
  32. :FOR
  33. cls
  34. echo Please insert 'Tennis-Cup D(4)' disc
  35. pause
  36. if not exist logo.ega goto FOR
  37. cls
  38. echo  Copying files from Disc D(4) to drive "%1"
  39. copy *.* %1\tennis >nul
  40. %1
  41. cd %1\tennis
  42. goto End
  43. :NOP
  44. echo .
  45. echo Please enter the drive where the files
  46. echo should be placed  (C: or D:)
  47. echo when you run HARD    e.g. HARD C:
  48. echo .
  49. echo A directory "TENNIS" will be created on it
  50. echo containing the program files.
  51. :End
  52.  
  53.