home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
grap_cad
/
pcblox
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-09-01
|
1KB
|
43 lines
echo off
cls
echo ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
echo ▒ ▒
echo ▒ PC-BLOX Install Program ▒
echo ▒ ▒
echo ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
echo.
if not exist pc-blox.reg goto continue
echo This is the Registered User Diskette, Disk #2.
echo The install must be performed from the
echo Shareware Evaluation Diskette, Disk #1.
echo Please remove this disk and insert Disk #1.
pause
%0
:continue
echo This will create a directory C:\PC-BLOX
echo on the hard disk drive C: and will copy
echo the PC-BLOX files to it.
ask Do you want to do this? (Y/N)
if errorlevel 1 goto alldone
md c:\pc-blox
copy *.* c:\pc-blox
:repeat
echo.
echo Are you installing a REGISTERED copy of PC-BLOX
echo or a SHAREWARE EVALUATION copy? PLease answer
ask Y for Registered or N for Shareware. (Y/N)
if errorlevel 1 goto runit
echo.
echo Please remove Disk #1 and insert Disk #2.
pause
if not exist pc-blox.reg goto repeat
copy *.* c:\pc-blox
:runit
c:
cd\pc-blox
cls
echo PC-BLOX installation complete.
echo.
echo To run PC-BLOX type DEMO and press Enter.
:alldone