home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Action 8 A
/
cdactioncoverdisc
/
birthr
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1996-09-17
|
1KB
|
55 lines
@echo off
echo Installation of this demo will require 30 Meg of disk space available.
choice Do you wish to continue
if errorlevel 2 goto done
if "%1"=="?" goto usage
if not "%1"=="" goto havedrive
choice /CCD /N Type the drive letter you wish to use to install (C D):
if errorlevel 2 goto ddrive
set dr=c
goto install
:ddrive
set dr=d
goto install
:havedrive
set dr=%1
:install
md %dr%:\brdemo
brdemo -d %dr%:\brdemo
%dr%:
cd \brdemo
echo .
choice /N Would you like to run the Birthright demo now?
if errorlevel 2 goto no
choice /C12 /N Press 1 for Windows 95 or, 2 for DOS version (1 2):
if errorlevel 2 goto dos
brthrt95
goto done
:dos
birthrt
goto done
:no
echo Type birthrt at the prompt to start the DOS demo.
echo Type brthrt95 at the prompt to start the Windows 95 demo.
echo .
echo For Windows 95 double click the Birthright icon
echo in the \BRDEMO directory
goto done
:usage
echo Please include the drive letter where you wish to install
echo the Birthright Demo
echo .
echo For example:
echo install c
:done
set dr=