home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Select: Games 3
/
cd.iso
/
games
/
wingglor
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1995-01-22
|
1KB
|
45 lines
@echo off
if exist install.dat goto do_sound
if '%1' == '' goto help
if '%2' == '' goto help
REM Perform the installation
%2:
cd \
md WGDEMO
cd WGDEMO
%1:
xcopy /s *.* %2:\wgdemo
%2:
cd \wgdemo
md saved
md tapes
sndtest
dir > install.dat
echo The installation of Wings of Glory demo is complete.
echo Type WG to run the demo.
goto done
:do_sound
sndtest
goto done
:help
echo.
echo Wings of Glory Demo Installation Instructions:
echo ------------------------------------------------------------------------
echo This demo is designed to run from a hard drive.
echo In order to play, you must have have around 11 megs free.
echo To install this demo to a hard drive, type INSTALL followed by the
echo drive letter of the source CD drive and the drive letter of the desired
echo destination hard drive.
echo.
echo Example:
echo INSTALL E C
echo.
echo This will install the Wings of Glory demo to the C: drive from the E:
echo drive, in the directory WGDEMO.
echo.
:done