home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
modem
/
mc105prg.arc
/
RUN.BAT
< prev
Wrap
DOS Batch File
|
1988-01-23
|
2KB
|
77 lines
echo off
cls
:entry
echo B.....Begin Multi-Com
echo R.....Read introduction -- Do this first.
ep "Esc...Exit to DOS" [BR]
if errorlevel = 3 goto exit
if errorlevel = 2 goto read
if errorlevel = 1 goto program
:read
cls
echo Multi-Com(tm) Version 1.05
echo (C) C.P. Fricano 1984,1988
echo All Rights Reserved
echo -
echo This is a demo version of the Multi-Com program.
echo Multi-Com is a special purpose communication program
echo that permits concurrent downloading/uploading of
echo multiple files over a single phone line.
echo -
echo This version will not work with the MC-FTS program.
echo MC-FTS is a host file transfer program that runs
echo on some electronic BBS's. It is, however, 99 percent
echo functional when connected to another system running
echo version 1.05 of Multi-Com. To obtain your own personal
echo copy of Multi-Com, or for more information about
echo Multi-Com and the MC-FTS, please write:
echo -
echo Chuck Fricano Chuck Fricano UCS-1
echo Multi-Com Systems CIS 73230,3203 412/276-1269
echo P.O. Box 16174 300/1200 8n1
echo Pittsburgh, PA 15242 GEnie C.FRICANO
echo -
pause (c) C.P. Fricano 1988
cls
echo The program ID and password are:
echo -
echo ID word: 9999
echo Password: DEMO
echo -
echo -
echo Documentation is contained in the MC105.DOC file. Print this
echo file and have it ready when you begin Multi-Com.
echo -
echo Multi-Com(tm) is the copyrighted property of Chuck Fricano and
echo and contains proprietary program code and communication algorithms.
echo -
echo -
echo Thank you for using Multi-Com,
echo -
echo Chuck
echo Author, Multi-Com
echo -
goto entry
:program
cls
if exist mc105.exe goto progok
echo The Multi-Com program file is missing
goto exit1
:progok
if exist mc_dial.dat goto dialok
echo The dialing directory is missing and will be created by Multi-Com.
pause
:dialok
if exist mc_cnfg.dat goto cnfgok
echo The configuration file is missing. See section 3 in your user's guide.
pause
:cnfgok
echo Program load in progress...
mc105 /nfe /ntl /c=4 /b=4096
:exit
goto exit1
:EOF
-1551
:exit1