home *** CD-ROM | disk | FTP | other *** search
- @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
-
-