home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Zodiac Super OZ
/
MEDIADEPOT.ISO
/
FILES
/
32
/
LKIT3270.ZIP
/
PRINTDOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1996-06-15
|
766b
|
28 lines
@REM PRINTDOC.BAT; JLS 07/96
@echo off
if "%1"=="" goto default
set loc=%1
goto next
:default
set loc=lpt1
:next
cls
ECHO Docs for The Letterhead Kit for Windows will now print...
ECHO ...
ECHO The files REGISTER.TXT, LTRWIN.TXT, and PRODUCTS.TXT will print
ECHO to the printer %loc%. Press any key to begin.
ECHO .
ECHO If you need to print to any other printer, press Ctrl-C now to stop
ECHO this batch file, and restart PRINTDOC with a device name, like this:
ECHO PRINTDOC LPT2
ECHO or:
ECHO PRINTDOC PRN
ECHO .
ECHO VENDINFO.DIZ contains sysop and vendor information, and may
ECHO be examined with the READ_ME.BAT batch file provided.
ECHO on
@PAUSE
type register.txt >%loc%
type ltrwin.txt >>%loc%
type products.txt >>%loc%
@PAUSE