home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 6 / CD-ROM_Today_-_The_Disc_6_December_1994.iso / pc / dosinstl.bat next >
DOS Batch File  |  1994-10-18  |  1KB  |  89 lines

  1. @echo off
  2.  
  3. REM JGP:)
  4.  
  5. cls
  6.         
  7. echo Type in the letter of the
  8. echo hard drive you wish to use:
  9.  
  10. choice /c:cde 
  11.  
  12. if errorlevel 3 GOTO e
  13. if errorlevel 2 GOTO d
  14. if errorlevel 1 GOTO c
  15.  
  16.  
  17.  
  18.  
  19.  
  20. :c
  21. md c:\cdrtoday
  22. echo What is your CD-ROM drive called?
  23. choice /c:def D, E or F?
  24. if errorlevel 3 goto copyfc
  25. if errorlevel 2 goto copyec
  26. if errorlevel 1 goto copydc
  27.  
  28. :copydc
  29. copy \dosend\dosend_d.exe c:\cdrtoday
  30. c:
  31. cd \cdrtoday
  32. echo Type DOSEND_D to run the new front-end for DOS!
  33. goto end
  34.  
  35. :copyec
  36. copy \dosend\dosend_e.exe c:\cdrtoday
  37. c:
  38. cd \cdrtoday
  39. echo Type DOSEND_E to run the new front-end for DOS!
  40. goto end
  41.  
  42. :copyfc
  43. copy \dosend\dosend_f.exe c:\cdrtoday
  44. c:
  45. cd \cdrtoday
  46. echo Type DOSEND_F to run the new front-end for DOS!
  47. goto end
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. :d
  56. md d:\cdrtoday
  57. echo What is your CD-ROM drive called?
  58. choice /c:ef E or F?
  59. if errorlevel 2 goto copyfd
  60. if errorlevel 1 goto copyed
  61.  
  62. :copyed
  63. copy \dosend\dosend_e.exe d:\cdrtoday
  64. d:
  65. cd \cdrtoday
  66. echo Type DOSEND_E to run the new front-end for DOS!
  67. goto end
  68.  
  69. :copyfd
  70. copy \dosend\dosend_f.exe d:\cdrtoday
  71. d:
  72. cd \cdrtoday
  73. echo Type DOSEND_F to run the new front-end for DOS!
  74. goto end
  75.  
  76.  
  77.  
  78.  
  79.  
  80. :e
  81. md e:\cdrtoday
  82. copy \dosend\dosendf.exe e:\cdrtoday
  83. e:
  84. cd \cdrtoday
  85. echo Type DOSEND_F to run the new front-end for DOS!
  86. goto end
  87.  
  88. :end
  89.