home *** CD-ROM | disk | FTP | other *** search
- echo off
- REM %%VER EtherLink II Information Program v2.0d
- if %mono%.==y. goto b&w
- ..\install\flushkey
- ..\install\check videocard
- if errorlevel 1 goto color
- :b&w
- cls
- goto contin
- :color
- ..\install\get b 31
- :contin
- type info.men
- ..\install\echoxy 18 18 Select Option:
- ..\install\reply
- if errorlevel 60 goto inval
- if errorlevel 59 goto help
- if errorlevel 54 goto inval
- if errorlevel 53 goto main
- if errorlevel 52 goto isv
- if errorlevel 51 goto sup
- if errorlevel 50 goto gen
- if errorlevel 49 goto conf
- if errorlevel 28 goto inval
- if errorlevel 27 goto main
-
- :inval
- ..\install\echoxy 21 17 **** Invalid key, try again. ****
- echo
- echo
- echo.
- info
-
- :help
- echo.
- echo.
- echo.
- type info.hlp
- pause
- info
-
- :main
- cd..
- menu
-
- :isv
- set txt=isvlist?.txt
- goto print
-
- :conf
- set txt=tpopts.txt
- goto print
-
- :gen
- set txt=sysresrc.txt
- goto print
-
- :sup
- set txt=support.txt
-
- :print
- ..\install\echoxy 23 2
- echo.
- type ..\blank.men
- ..\install\echoxy 4 22 I N F O R M A T I O N M E N U
- if %txt% == tpopts.txt ..\install\echoxy 6 22 Twisted-pair Options
- if %txt% == sysresrc.txt ..\install\echoxy 6 22 System Resources
- if %txt% == support.txt ..\install\echoxy 6 22 Technical Support
- if %txt% == isvlist?.txt ..\install\echoxy 6 22 Software Compatibility List
- ..\install\echoxy 10 18 1. Print to LPT1
- ..\install\echoxy 11 21 LPT1 can be a local printer or a redirected
- ..\install\echoxy 12 21 network printer.
- ..\install\echoxy 14 18 2. Print to COM1
- ..\install\echoxy 15 21 Select option 2 only if you have a COM serial printer
- ..\install\echoxy 16 21 attached to your computer.
- ..\install\echoxy 18 18 3. Display Text File on Screen
- ..\install\echoxy 20 21 Select Option:
- ..\install\reply
- if errorlevel 52 goto inval
- if errorlevel 51 goto disp
- if errorlevel 50 goto comprt
- if errorlevel 49 goto lineprt
- if errorlevel 28 goto inval
- if errorlevel 27 goto infomen
- if errorlevel 13 goto inval
- :disp
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- copy %txt% temp > nul
- ..\install\more < temp
- pause
- del temp > nul
- goto infomen
-
- :lineprt
- ..\install\get P
- if not errorlevel 1 goto prterror
- copy %txt% lpt1 > nul
-
- :prtdone
- ..\install\echoxy 17 21
- ..\install\echoxy 20 21
- ..\install\echoxy 18 15 The text file has been printed.
- ..\install\echoxy 19 15
- pause
- goto infomen
-
- :prterror
- ..\install\echoxy 17 21
- ..\install\echoxy 20 21
- ..\install\echoxy 18 15 *** Printing Error: Unable to Locate Printer! ***
- ..\install\echoxy 19 15
- pause
- goto print
-
- :infomen
- info
-
- :comprt
- copy %txt% Com1:
- goto print
-
-