home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
procomm
/
aaapcp31.arc
/
AINSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-11-13
|
2KB
|
59 lines
echo off
cls
echo Batch File to Install AAAPCP+ onto Hard Disk By Flurb.
echo -------------------------------------------------------------------
echo .
echo This batch file is designed to install the AAAPCP+ package
echo to your hard disk:
echo .
echo 1. Copy AAAPCP.ASP into PCPLUS Directory.
echo 2. Copy AAAPCP.KEY into PCPLUS Directory.
echo 3. Copy ACONFIG.COM into PCPLUS Directory.
echo 4. Inform of the next logical step: ACONFIG.
echo .
IF %1X == X GOTO NOPARM
IF NOT EXIST AAAPCP.ASP GOTO FIMISS:
IF NOT EXIST AAAPCP.KEY GOTO FIMISS:
IF NOT EXIST ACONFIG.COM GOTO FIMISS:
PAUSE
COPY AAAPCP.ASP %1
COPY AAAPCP.KEY %1
COPY ACONFIG.COM %1
CLS
echo Files Installed: Installation Part Complete.
echo .
echo NEXT STEP: ACONFIG
echo The next step is to use ACONFIG to configure the AAAPCP+ Aspect
echo file to your PC-Pursuit ID, baud rate, and Telenet's access number.
echo .
echo 1. Set the current path to the PCPLUS path that the files were
echo just copied to.
echo 2. Type ACONFIG and press ENTER.
echo 3. When asked, enter AAAPCP.ASP as the source file.
echo 4. When asked, enter A.ASP as the destination file.
echo 5. When asked, enter your PC-Pursuit ID & Password.
echo 6. When asked, enter your Telenet baud rate (300/1200/2400).
echo 7. When asked, enter your Telenet access number.
echo .
echo After you ACONFIGure, you may use AAAPCP+ by issueing
echo ALT-F5 A <ENTER> from within PCPLUS, or PCPLUS/fa from DOS.
echo For more information, read the manual.
echo .
echo Hope you enjoy AAAPCP+,
echo The Flurb
GOTO EXIT
:FIMISS
echo ERROR: AINSTALL called from within directory that does not contain
echo the files. Switch to subdirectory with files, and try again.
echo.
:NOPARM
ECHO ERROR: AINSTALL PARAMETER MISSING!
echo USAGE: From directory containing the above files type:
echo AINSTALL [drive:][\path][\path]
echo Where the parameter defines the directory for PCPLUS.
echo Example: AINSTALL C:\COMM\PCPLUS
:EXIT