home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 4
/
CD_1.iso
/
games
/
basstour
/
btinstal.bat
< prev
next >
Wrap
DOS Batch File
|
1992-01-31
|
1KB
|
42 lines
echo off
if "%1" == "" goto usage
%1
cd\
mkdir btour
copy a:BT.BAT %1
cd %1\btour
copy a:*.exe %1
copy a:*.map %1
copy a:*.pic %1
copy a:*.trn %1
copy a:*.doc %1
copy a:*.bat %1
copy a:*.pal %1
copy a:orderfrm.txt %1
copy a:register.txt %1
copy a:Q&A.txt %1
cls
echo -- Installation is complete. A directory called BTOUR has been
echo -- created on the disk drive you specified. This directory contains
echo -- all necessary BassTour files. To run BassTour, first change to the
echo -- BTOUR directory on the disk drive where you installed BassTour,
echo -- then type BASSTOUR. You can also edit your PATH command to include
echo -- the new BTOUR directory. Consult your DOS manual for more
echo -- information on the PATH command.
echo --
echo -- To run BassTour now, type BASSTOUR then press the ENTER key.
goto end
:usage
echo -- You must specify a disk drive where BassTour is to be installed:
echo --
echo -- EXAMPLES: a:btinstal c:
echo -- -OR-
echo -- a:btinstal d:
echo --
echo -- Notice the c: and the d: at the end of the command. These specify
echo -- where you want to install BassTour.
goto end
:end
%1