home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo AEGIS: Guardian of the Fleet -- Patch 0002
- echo ------------------------------------------
- echo.
- echo.
- if "%1"=="" goto usage
- if exist %1\sorcery\aegis\aegis.exe goto update
- if exist %1\sorcery\aegis\aegisv.exe goto update
- goto err
-
- :UPDATE
- echo copying update files. Please wait...
- copy update02.exe %1\sorcery\aegis > NUL
- echo updating old files. Please wait...
- %1
- cd \sorcery\aegis
- update02.exe
- del update02.exe
- goto end
-
- :ERR
- echo Could not locate the AEGIS files in %1\sorcery\aegis directory. Please check
- echo to be sure that the drive letter and the path names are correct.
- echo.
- goto end
-
- :USAGE
- echo Usage: UPDATE [drive letter]:
- echo.
- echo To update your version of AEGIS, type "UPDATE" followed by a space and the
- echo drive letter where the \sorcery\aegis directory is located. (Don't forget
- echo to put a colon after the drive letter).
- echo.
- echo Example Usage: UPDATE C:[enter]
- goto end
-
- :END
- echo.
-