home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
educnomy
/
cosmohod
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1992-02-05
|
2KB
|
67 lines
echo off
if x%1==x goto help
if x%2==x goto help
if x%3==x goto help
echo
echo ┌─────────────────────────╖
echo │ ║
echo │ ──── Our Cosmohood ──── ║
echo │ ║
echo │ Installation ║
echo │ ║
echo ╘═════════════════════════╝
echo
echo
echo NOTE: This will NOT modify AUTOEXEC.BAT, CONFIG.SYS, or other
echo files on your hard disk. It will only write to %2%3.
echo
echo We will be installing from %1
echo onto %2%3
echo
echo Press CTRL-C to abort, or any other key to install now
pause
%2
mkdir %3
chdir %3
copy %1och.exe
copy %1och.obj
copy %1och.pnt
copy %1och.doc
copy %1och.txt
echo
echo ┌──────────────────────────────────╖
echo │ ║
echo │ ──── Our Cosmohood ──── ║
echo │ Installation Finished ║
echo │ ║
echo │ To run, type OCH and press enter ║
echo │ ║
echo │ To start the demo, press ! ║
echo │ ║
echo │ Complete instructions are ║
echo │ in file: OCH.DOC ║
echo │ ║
echo ╘══════════════════════════════════╝
goto end
:help
echo
echo
echo To install Our Cosmohood, type
echo source:INSTALL source: dest: dir
echo and press ENTER.
echo
echo Where
echo source is the drive letter you put the disk into, like A:
echo dest is the drive letter where you want it installed, like C:
echo dir is the directory where you want it installed, like \OURCOSMO
echo
echo Examples are:
echo A:INSTALL A: C: \OURCOSMO
echo B:INSTALL B: D: \ASTRONMY\PROGRAMS\OURCOSMO
echo A:INSTALL A: C: NEWCHILD
echo
echo Only files on the drive and directory you specify will be written to.
:end
echo
echo