home *** CD-ROM | disk | FTP | other *** search
/ Computer Tool Software / soft.iso / Multimed / Net / 3COM / 3C503 / INFO / INFO.BAT next >
Encoding:
DOS Batch File  |  1992-01-10  |  2.8 KB  |  129 lines

  1. echo off
  2. REM %%VER EtherLink II Information Program v2.0d
  3. if %mono%.==y. goto b&w
  4. ..\install\flushkey
  5. ..\install\check videocard
  6. if errorlevel 1 goto color
  7. :b&w
  8. cls
  9. goto contin
  10. :color
  11. ..\install\get b 31
  12. :contin
  13. type info.men
  14. ..\install\echoxy 18 18 Select Option:
  15. ..\install\reply
  16. if errorlevel 60 goto inval
  17. if errorlevel 59 goto help
  18. if errorlevel 54 goto inval
  19. if errorlevel 53 goto main
  20. if errorlevel 52 goto isv
  21. if errorlevel 51 goto sup
  22. if errorlevel 50 goto gen
  23. if errorlevel 49 goto conf
  24. if errorlevel 28 goto inval
  25. if errorlevel 27 goto main
  26.  
  27. :inval
  28. ..\install\echoxy 21 17  **** Invalid key, try again. ****
  29. echo 
  30. echo 
  31. echo.
  32. info
  33.  
  34. :help
  35. echo.
  36. echo.
  37. echo.
  38. type info.hlp
  39. pause
  40. info
  41.  
  42. :main
  43. cd..
  44. menu
  45.  
  46. :isv
  47. set txt=isvlist?.txt
  48. goto print
  49.  
  50. :conf
  51. set txt=tpopts.txt
  52. goto print
  53.  
  54. :gen
  55. set txt=sysresrc.txt
  56. goto print
  57.  
  58. :sup
  59. set txt=support.txt
  60.  
  61. :print
  62. ..\install\echoxy 23 2
  63. echo.
  64. type ..\blank.men
  65. ..\install\echoxy 4 22 I N F O R M A T I O N    M E N U
  66. if %txt% == tpopts.txt ..\install\echoxy 6 22 Twisted-pair Options
  67. if %txt% == sysresrc.txt ..\install\echoxy 6 22 System Resources 
  68. if %txt% == support.txt ..\install\echoxy 6 22 Technical Support 
  69. if %txt% == isvlist?.txt ..\install\echoxy 6 22 Software Compatibility List
  70. ..\install\echoxy 10 18 1. Print to LPT1
  71. ..\install\echoxy 11 21 LPT1 can be a local printer or a redirected    
  72. ..\install\echoxy 12 21 network printer.
  73. ..\install\echoxy 14 18 2. Print to COM1
  74. ..\install\echoxy 15 21 Select option 2 only if you have a COM serial printer
  75. ..\install\echoxy 16 21 attached to your computer.
  76. ..\install\echoxy 18 18 3. Display Text File on Screen
  77. ..\install\echoxy 20 21 Select Option:
  78. ..\install\reply
  79. if errorlevel 52 goto inval
  80. if errorlevel 51 goto disp
  81. if errorlevel 50 goto comprt
  82. if errorlevel 49 goto lineprt
  83. if errorlevel 28 goto inval
  84. if errorlevel 27 goto infomen
  85. if errorlevel 13 goto inval
  86. :disp
  87. echo.
  88. echo.
  89. echo.
  90. echo.
  91. echo.
  92. echo.
  93. echo.
  94. copy %txt% temp > nul
  95. ..\install\more < temp
  96. pause
  97. del temp > nul
  98. goto infomen
  99.  
  100. :lineprt
  101. ..\install\get P
  102. if not errorlevel 1 goto prterror
  103. copy %txt% lpt1 > nul
  104.  
  105. :prtdone
  106. ..\install\echoxy 17 21                                                       
  107. ..\install\echoxy 20 21                                                       
  108. ..\install\echoxy 18 15 The text file has been printed.       
  109. ..\install\echoxy 19 15
  110. pause
  111. goto infomen
  112.  
  113. :prterror 
  114. ..\install\echoxy 17 21                                                       
  115. ..\install\echoxy 20 21                                                       
  116. ..\install\echoxy 18 15 *** Printing Error:  Unable to Locate Printer! *** 
  117. ..\install\echoxy 19 15
  118. pause
  119. goto print
  120.  
  121. :infomen
  122. info
  123.  
  124. :comprt
  125. copy %txt% Com1: 
  126. goto print
  127.  
  128.  
  129.