home *** CD-ROM | disk | FTP | other *** search
/ PC Format 4 / Disk4.iso / A / PCF.BAK < prev    next >
Text File  |  1991-11-20  |  1KB  |  108 lines

  1. echo off
  2. cls
  3.  
  4. :start
  5. nocurs
  6. disp pcfiss4 2
  7. getkey xfvc
  8.  
  9. if errorlevel 4 goto cisco
  10. if errorlevel 3 goto vgacad
  11. if errorlevel 2 goto freecell
  12. if errorlevel 1 goto quit
  13.  
  14. :cisco
  15. cd cisco
  16. cisco
  17. cd\
  18. :goto start
  19.  
  20. :vgacad
  21. disp pcfiss41 2
  22. getkey abcm
  23.  
  24. if errorlevel 4 goto start
  25. if errorlevel 3 goto ccopy
  26. if errorlevel 2 goto bcopy
  27. if errorlevel 1 goto acopy
  28.  
  29. :acopy
  30. cls
  31. echo Please insert a blank formated disk in drive A
  32. echo Do you wish to continue (Y/N)
  33. getkey yn
  34. if errorlevel 2 goto vgacad
  35. if errorlevel 1 goto ai 
  36. :ai
  37. copy vcad.exe a:\
  38. ai:
  39. vcad
  40. vgacad
  41. goto start
  42.  
  43. :bcopy
  44. cls
  45. echo Please insert a blank formatted disk in drive B
  46. echo Do you wish to continue (Y/N)
  47. getkey yn
  48. if errorlevel 2 goto vgacad
  49. if errorlevel 1 goto bi
  50. :bi
  51. copy vcad.exe b:\
  52. b:
  53. vcad
  54. vgacad
  55. goto start
  56.  
  57. :ccopy
  58. cls
  59. echo This will create a directory on your hard drive called VGACAD
  60. echo and install the program there.
  61. echo Do you wish to continue (Y/N)
  62. getkey yn
  63. if errorlevel 2 goto vgacad
  64. if errorlevel 1 goto ci
  65.  
  66. :ci
  67. cls
  68. echo is this disk in drive A or B (A/B)
  69. getkey ab
  70. if errorlevel 2 goto cb
  71. if errorlevel 1 goto ca
  72.  
  73. :ca
  74. echo on
  75. md c:\vgacad
  76. copy vcad.exe c:\vgacad
  77. c:
  78. cd vgacad
  79. vcad
  80. vgacad
  81. echo off
  82. a:
  83. goto start
  84.  
  85. :cb
  86. echo on
  87. md c:\vgacad
  88. copy vcad.exe c:\vgacad
  89. c:
  90. cd vgacad
  91. vcad
  92. vgacad
  93. echo off
  94. b:
  95. goto start
  96.  
  97. :freecell
  98. cls
  99. freecell
  100. goto start
  101.  
  102. :quit
  103. cls
  104. echo thankyou for using the PCF Cover Disk.
  105. cd\
  106. pause
  107.  
  108.