home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Encyclopedia of Games 1
/
Microforum-Over1000GamesVol1-Win31-CD1of2.iso
/
mixed
/
evolve
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1993-08-09
|
823b
|
34 lines
@echo off
if "%1" == "" goto errmsg
md %1\evolite
echo Copying files to %1\evolite...
copy *.* %1\evolite
if not exist %1\evolite\install.bat goto errmsg
del %1\evolite\install.bat
cd %1\evolite
echo.
echo DONE
echo.
echo.
echo Go into directory %1\evolite
echo.
echo and type "go"
echo.
echo.
goto end
:errmsg
echo.
echo *** NOT INSTALLED ***
echo.
echo Please use install drive:[\path]
echo.
echo For example, install c:\games Assuming c:\games exists, this will
echo create directory c:\games\evolite
echo and copy all the files there.
echo.
echo install c: will create directory c:\evolite
echo and copy all the files there.
echo.
:end