home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1995 November
/
PCWK1195.iso
/
esker
/
tcp_dos.1
/
LPT.ARC
/
AUTOLPT.BAT
next >
Wrap
DOS Batch File
|
1993-11-15
|
430b
|
22 lines
@echo off
if "%1"=="" goto start
if "%1"=="START" goto start
if "%1"=="start" goto start
if "%1"=="STOP" goto stop
if "%1"=="stop" goto stop
:error
echo "Usage : %0 START|STOP"
goto end
:start
C:\TUNTCP\VXPRINT.EXE -lpts -p20 -t10
C:\TUNTCP\RXPRINT.EXE -lpts
C:\TUNTCP\VXPRINT.EXE -lpt1 on -b
C:\TUNTCP\RXPRINT.EXE -lpt2 xenix "lp" 10
goto end
:stop
C:\TUNTCP\RXPRINT.EXE -u
C:\TUNTCP\VXPRINT.EXE -u
:end