home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
Othergam
/
GLDRSH-1.ZIP
/
INSTALLH.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-10-14
|
1KB
|
49 lines
echo off
echo off
echo
echo
rem ---- Make sure that we've got a parameter and that we're on the
rem ---- proper drive.
if "%1" == "" goto Usage
if not exist installh.bat goto Usage
rem ---- Wait for a keystroke before starting.
echo off
echo Hard disk installation for
echo Gold Rush
pause
rem ---- Create or change to the appropriate directory on the hard disk.
makepath %1\sierra
if errorlevel 1 goto CantMake
makepath %1gr
if errorlevel 1 goto CantMake
rem ---- Copy the installation file to the hard disk and execute it.
copy _install.bat %1
%1_install %1
goto Exit
rem ---- Tell user that we couldn't create the proper directory
rem ---- and bail out.
:CantMake
echo off
echo
echo
echo Unable to create the directory
echo %1\sierra\gr
echo Installation cancelled.
goto Exit
rem ---- No parameter or not on the proper drive -- tell user how
rem ---- to use installation program.
:Usage
echo off
echo To install Gold Rush on
echo hard disk C:, make the drive
echo containing the Gold Rush
echo disk your current drive, then type
echo installh C:
echo If your hard disk has a drive letter
echo other than C:, use its letter instead.
:Exit