home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
religion
/
biblett
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-03-29
|
1KB
|
34 lines
echo off
cls
FOR %%I in (A: a: B: b: C: c: D: d: E: e: F: f: G: g: H: h: I: i: J: j: K: k:) do If "%%I" == "%1" goto goodparm
goto help
:goodparm
echo This program will copy the BIBLETTE distribution diskette
echo files to the hard drive listed in the command line.
echo ┌──────────────────────────────────────────────────────┐
echo │ You are about to install BIBLETTE on %1\BIBLETTE │
echo └──────────────────────────────────────────────────────┘
echo If this is NOT what you want to do, please press Control-C at the
echo pause and re-enter it. Otherwise, press any key....
pause
echo Installing BIBLETTE . . .
md %1\BIBLETTE
echo copying Bib-ette.exe to %1\BIBLETTE
copy BIB-ETTE.EXE %1\BIBLETTE /v
echo
%1
cd \BIBLETTE
BIB-ETTE
DEL BIB-ETTE.EXE
goto exit
:help
echo Sorry, you must specify a drive on the command line to configure
echo BIBLETTE correctly. For instance, the following command:
echo ┌────────────────────────────┐
echo │ INSTALL C: │
echo └────────────────────────────┘
echo will copy the files to a directory called \BIBLETTE on drive C:. And
echo and configure BIBLETTE to run from the directory C:\BIBLETTE
:exit