home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
FINANCE
/
LMYM203.ZIP
/
LMYM_BAT.EXE
/
LMSAMPLE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-07-07
|
2KB
|
52 lines
@echo off
if %1x==x goto NOTE1
if exist samples\lm_john.101 goto ALTV
copy /b lm\samples\oe_john.001 %1
copy /b lm\samples\oe_jane.002 %1
copy /b lm\samples\lm_john.101 %1
copy /b lm\samples\lm_jane.102 %1
goto NOTE2
:ALTV
copy /b samples\oe_john.001 %1
copy /b samples\oe_jane.002 %1
copy /b samples\lm_john.101 %1
copy /b samples\lm_jane.102 %1
goto NOTE2
:NOTE1
echo.
echo This utility can install four sample laser signatures into your printer.
echo.
echo To do this you must tell it where your printer is attached to your system.
echo.
echo For example, if the laser is your main system printer you would enter
echo.
echo LMSAMPLE PRN
echo ---
echo.
echo Depending on your system you might replace PRN with LPT1, LPT2, LPT3,
echo LPT4, COM1, COM2, COM3, COM4 or AUX.
echo.
goto END
:NOTE2
echo.
echo If the four COPYs were successful you can now use macros 1, 2, 101, and 102
echo with the LaserMax software. To laser print a signature on the check all you
echo need to do is to set the Signature macro (in the Bank Account controls) to
echo number 1, 2, 101, or 102.
echo.
echo Macro 1 is the Orbit Enterprises John Doe signature.
echo Macro 2 is the Orbit Enterprises Jane Doe signature.
echo Macro 101 is the LaserMax Software John Dough signature.
echo Macro 102 is the LaserMax Software Jane Dough signature.
echo.
echo When you turn off the printer these signatures will be erased from the
echo printer's memory.
:END