home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
201 Games 4 You
/
PILOT_2895.img
/
dosgame
/
geschick
/
heart
/
hdinst.bat
< prev
next >
Wrap
DOS Batch File
|
1992-11-26
|
380b
|
20 lines
@echo off
if "%1" == "" goto usage
md %1\hl >nul
echo Copying files to hard disk...
copy hl.exe %1\hl >nul
copy install.exe %1\hl >nul
copy read.com %1\hl >nul
copy read.me %1\hl >nul
copy info.txt %1\hl >nul
%1
cd \hl
install
echo
echo Type HL to start the game.
echo
goto exit
:usage
echo Type HDINST C: to install Heartlight PC to directory C:\HL
:exit