home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
120.img
/
SKIRDIE1.ZIP
/
INSTALL2.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-01-29
|
968b
|
41 lines
rem --- If 3.5" disk, all files will already have been copied to the
rem hard disk, so no need to copy any more here.
if exist %1\ski\hiscores goto installDone
rem --- make sure drive contains the utility disk.
:3
if exist hiscores goto 4
cls
echo Insert SKI OR DIE!! Game disk 2 into drive.
pause
goto 3
:4
rem --- copy game disk 2 files to the hard disk.
echo
echo Copying game files...
copy *.* %1\ski
if not exist %1\ski\hiscores goto installationError
rem --- installation was successful!
:installDone
cd %1\ski
echo
echo SKI OR DIE!! is now installed on your hard disk.
echo To run it, type "SKI".
%1
goto done
rem --- general installation error.
:installationError
echo
echo Installation Error: Perhaps there isn't enough space on your hard disk.
goto errorDone
rem --- goto here after an error is detected, to print a message and exit.
:errorDone
echo SKI OR DIE!! was not installed correctly.
:done