home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="" goto syntax
- if "%2"=="" goto syntax
- goto start3
-
- :syntax
- cls
- echo Syntax: INSTALCD C:\PATH\DAWNPTRL D: <Return>
- goto end
-
- :error1
- echo Error: Dawn Patrol not installed at %1
- goto end
-
- :error2
- echo Error: Dawn Patrol CD-ROM not found in Drive %2
- goto end
-
- :start3
- if not exist %1\patrol.exe goto error1
- if not exist %2\install.exe goto error2
- goto start4
-
- :start4
- cls
- update -d -o %1
- echo Please run CDPATCH from %1 to install changes, and then run SVGATEST and
- echo PATROL ? again.
- goto end
- :end
-
-
-