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

  1. cls 
  2. @echo off
  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. @echo off 
  15. cls 
  16. MD C:\GENTEMP 
  17. COPY \GENIE\*.* C:\GENTEMP 
  18. C: 
  19. CD\GENTEMP
  20. REN _INS0762.LIB ~INS0762.LIB 
  21. echo Access your C:\GENTEMP
  22. echo directory and type 
  23. echo SETUP
  24.  
  25. c:
  26. goto end 
  27.  
  28. :inst2
  29. @echo off 
  30. cls 
  31. MD D:\GENTEMP
  32. COPY \GENIE\*.* D:\GENTEMP
  33. D: 
  34. CD\GENTEMP
  35. REN _INS0762.LIB ~INS0762.LIB 
  36. echo Access your D:\GENTEMP
  37. echo directory and type
  38. echo SETUP
  39.  
  40. D: 
  41. goto end 
  42.  
  43. :inst3
  44. @echo off 
  45. cls 
  46. MD E:\GENTEMP
  47. COPY \GENIE\*.* E:\GENTEMP
  48. E: 
  49. CD\GENTEMP
  50. REN _INS0762.LIB ~INS0762.LIB 
  51. echo Access your E:\GENTEMP
  52. echo directory and type
  53. echo SETUP
  54.  
  55. E: 
  56. goto end 
  57.  
  58. :inst4
  59. @echo off 
  60. cls 
  61. MD F:\GENTEMP
  62. COPY \GENIE\*.* F:\GENTEMP
  63. F: 
  64. CD\GENTEMP
  65. REN _INS0762.LIB ~INS0762.LIB 
  66. echo Access your F:\GENTEMP
  67. echo directory and type
  68. echo SETUP
  69.  
  70. F: 
  71. goto end 
  72.  
  73. :inst5
  74. @echo off 
  75. cls 
  76. MD G:\GENTEMP
  77. COPY \GENIE\*.* G:\GENTEMP
  78. G: 
  79. CD\GENTEMP
  80. REN _INS0762.LIB ~INS0762.LIB 
  81. echo Access your G:\GENTEMP
  82. echo directory and type
  83. echo SETUP
  84.  
  85. G: 
  86. goto end 
  87.  
  88. :end 
  89.