home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Best of Mega Games for DOS
/
MEGA.iso
/
basstr
/
bcinstal.bat
< prev
next >
Wrap
DOS Batch File
|
1992-01-13
|
2KB
|
71 lines
echo off
cls
if "%1" == "" goto usage
%1
cd\
echo Creating BCLASS directory. UNABLE TO CREATE DIRECTORY message indicates
echo that the directory already exists.....
echo ------
mkdir bclass
copy a:bc.bat %1\
echo Copied BC.BAT to root directory.....
echo ------
cd %1\bclass
copy a:*.ran %1\bclass
copy a:*.map %1\bclass
copy a:*.pic %1\bclass
copy a:*.bat %1\bclass
copy a:orderfrm.txt %1\bclass
copy a:Q&A.txt %1\bclass
copy a:map.trn %1\bclass
copy a:*.doc %1\bclass
copy a:bassclas.exe %1\bclass
copy a:bcdoc.exe %1\bclass
if exist %1\bclass\bigfish.txt goto ask
copy a:bigfish.txt %1\bclass
copy a:bigstr.txt %1\bclass
goto movealong
:ask
echo NOTE ********
echo A file of BIG FISH records has been found in the BCLASS directory.
echo Continuing this installation will overwrite these records and the
echo BIG STRINGER records. Press CTRL-BREAK to cancel the installation
echo NOW so that your previous records will be preserved. Press any other
echo key to continue with the installation which will establish new
echo minimum records to beat.
echo ------
echo ------
pause
echo Replacing old BIG FISH and BIG STRINGER records with default values...
copy a:bigfish.txt %1\bclass
copy a:bigstr.txt %1\bclass
goto movealong
:movealong
cls
echo -------------------------------------------------------------------
echo Bass Class installation is completed. To run the program
echo type BASSCLAS then press the ENTER key.
echo -------------------------------------------------------------------
echo If your Bass Class disk contains a README.DOC file, be sure to read it.
echo It may contain last minute information about Bass Class.
echo --
echo To view or print the Bass Class manual, type BCDOC then press ENTER.
echo --
goto end
:usage
echo -- You must specify a disk drive where Bass Class is to be installed:
echo --
echo -- EXAMPLES: a:bcinstal c:
echo -- -OR-
echo -- a:bcinstal d:
echo --
echo -- Notice the c: and the d: at the end of the command. These specify
echo -- where you want to install Bass Class.
goto end
:end