home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: Special Sound & MIDI
/
Chip-Special_Sound-und-Midi-auf-dem-PC.bin
/
dosgames
/
hl
/
hdinst.bat
next >
Wrap
DOS Batch File
|
1993-01-14
|
393b
|
19 lines
@echo off
if "%1" == "" goto usage
md %1\hl >nul
echo Kopiere Dateien auf die Festplatte...
copy hl.exe %1\hl >nul
copy install.exe %1\hl >nul
copy hl.anl %1\hl >nul
copy info.txt %1\hl >nul
%1
cd \hl
install
echo
echo Bitte HL eingeben um das Spiel zu starten.
echo
goto exit
:usage
echo HDINST C: installiert HeartLight PC auf der Festplatte C in Verzeichnis HL
:exit