home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
ANS36A.ZIP
/
ANSWERIT.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-07-01
|
671b
|
25 lines
@echo off
rem
rem This batch file is an example of the use of ANSWER.EXE as a front end
rem telephone answering system. In this use, it can be used to answer
rem voice/data/fax calls.
rem
:loop
ctty con:
c:
cd \answer
answer %1
if errorlevel 34 SENDFAX.BAT
if errorlevel 33 RECVFAX.BAT
if errorlevel 25 C:\WILDCAT\CAT /B 9600MNP
if errorlevel 23 C:\WILDCAT\CAT /B 2400MNP
if errorlevel 22 C:\WILDCAT\CAT /B 1200MNP
if errorlevel 20 C:\WILDCAT\CAT /B 300MNP
if errorlevel 12 C:\WILDCAT\CAT /B 9600
if errorlevel 10 C:\WILDCAT\CAT /B 2400
if errorlevel 5 C:\WILDCAT\CAT /B 1200
if errorlevel 2 goto loop
if errorlevel 1 goto end
:end
echo done!