home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sunny 1,000 Collection
/
SUNNY1000.iso
/
Files
/
Dos
/
Sport
/
BASSDU11.ZIP
/
BDINSTAL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-23
|
1KB
|
33 lines
echo off
if "%1" == "" goto usage
%1
cd\
mkdir bduel
copy a:BD.BAT %1
cd %1\bduel
copy a:*.* %1
cls
echo -- Installation is complete. A directory called BDUEL has been
echo -- created on the disk drive you specified. This directory contains
echo -- all necessary BassDuel files. To run BassDuel, first change to the
echo -- BTOUR directory on the disk drive where you installed BassDuel,
echo -- then type BassDuel. You can also edit your PATH command to include
echo -- the new BassDuel directory. Consult your DOS manual for more
echo -- information on the PATH command.
echo --
echo -- To run BassDuel now, type BASSDUEL then press the ENTER key.
goto end
:usage
echo -- You must specify a disk drive where BassDuel is to be installed:
echo --
echo -- EXAMPLES: a:bdinstal c:
echo -- -OR-
echo -- a:bdinstal d:
echo --
echo -- Notice the c: and the d: at the end of the command. These specify
echo -- where you want to install BassDuel.
goto end
:end
%1