home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 4 / 1995-03_Disc_4.iso / brett / instbret.bat < prev    next >
DOS Batch File  |  1994-12-21  |  1KB  |  54 lines

  1. @echo off
  2. cls
  3. echo Please press the letter corresponding to
  4. echo your hard drive (C, D, E, F, and G are
  5. echo valid drive choices)
  6. choice /c:cdefg /n
  7. if errorlevel 5 goto inst5
  8. if errorlevel 4 goto inst4
  9. if errorlevel 3 goto inst3
  10. if errorlevel 2 goto inst2
  11. if errorlevel 1 goto inst1
  12.  
  13. :inst1
  14. md c:\BHDEMO
  15. xcopy *.* /s c:\BHDEMO
  16. echo To play, enter the directory c:\BHDEMO
  17. echo then type DEMO and press ENTER
  18. c:
  19. goto end
  20.  
  21. :inst2
  22. md d:\BHDEMO
  23. xcopy *.* /s d:\BHDEMO
  24. echo To play, enter the directory D:\BHDEMO
  25. echo then type DEMO and press ENTER
  26. d:
  27. goto end
  28.  
  29. :inst3
  30. md e:\BHDEMO
  31. xcopy *.* /s e:\BHDEMO
  32. echo To play, enter the directory E:\BHDEMO
  33. echo then type DEMO and press ENTER
  34. e:
  35. goto end
  36.  
  37. :inst4
  38. md f:\BHDEMO
  39. xcopy *.* /s f:\BHDEMO
  40. echo To play, enter the directory F:\BHDEMO
  41. echo then type DEMO and press ENTER
  42. f:
  43. goto end
  44.  
  45. :inst5
  46. md g:\BHDEMO
  47. xcopy *.* /s g:\BHDEMO
  48. echo To play, enter the directory G:\BHDEMO
  49. echo then type DEMO and press ENTER
  50. g:
  51. goto end
  52.  
  53. :end
  54.