home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Spiele Spiele Spiele 1
/
spiele-spiele-spiele-topware.iso
/
spiele
/
top2051
/
gepackt.exe
/
INSTALL.BAT
next >
Wrap
DOS Batch File
|
1992-10-07
|
712b
|
32 lines
@echo off
echo.
echo PlayByte Installation Batch
echo ---- UGH!/PC ----
echo.
if "%2" == "" goto error1
if not exist %1\ugh.exe goto error2
if %1 == %2 goto error5
md %2\ugh
if not exist %2\ugh\nul goto error3
copy %1\ugh.exe %2\ugh
if not exist %2\ugh\ugh.exe goto error4
echo Installation finished!
goto exit
:error1
echo INSTALL <source-drive> <target-drive>
echo z.B. INSTALL A: C:
goto exit
:error2
echo Drive %1 is not an UGH!-source-drive !
goto exit
:error3
echo Directory UGH could not be created on drive %2 !
goto exit
:error4
echo ugh.exe could not be copied to %2\ugh\ !
goto exit
:error5
echo Installation on source-drive is not allowed !
:exit
echo.
pause