home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 7 / 1995-06_Disc_7.iso / genie / cyberstk / instcybr.bat < prev    next >
DOS Batch File  |  1995-04-06  |  1KB  |  68 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:\CYBERSTK
  15. xcopy *.* /s c:\CYBERSTK
  16. echo .
  17. echo .
  18. echo You may need to run the Setup program.
  19. echo To play, enter the directory c:\CYBERSTK
  20. echo then type CS and press ENTER
  21. echo .
  22. echo .
  23. %x%
  24. cd\
  25. goto end
  26.  
  27. :inst2
  28. md d:\CYBERSTK
  29. xcopy *.* /s d:\CYBERSTK
  30. echo You may need to run the Setup program.
  31. echo To play, enter the directory c:\CYBERSTK
  32. echo then type CS and press ENTER
  33. %x%
  34. cd\
  35. goto end
  36.  
  37. :inst3
  38. md e:\CYBERSTK
  39. xcopy *.* /s e:\CYBERSTK
  40. echo You may need to run the Setup program.
  41. echo To play, enter the directory c:\CYBERSTK
  42. echo then type CS and press ENTER
  43. %x%
  44. cd\
  45. goto end
  46.  
  47. :inst4
  48. md f:\CYBERSTK
  49. xcopy *.* /s f:\CYBERSTK
  50. echo You may need to run the Setup program.
  51. echo To play, enter the directory c:\CYBERSTK
  52. echo then type CS and press ENTER
  53. %x%
  54. cd\
  55. goto end
  56.  
  57. :inst5
  58. md g:\CYBERSTK
  59. xcopy *.* /s g:\CYBERSTK
  60. echo You may need to run the Setup program.
  61. echo To play, enter the directory c:\CYBERSTK
  62. echo then type CS and press ENTER
  63. %x%
  64. cd\
  65. goto end
  66.  
  67. :end
  68.