home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Action 1996 February
/
PCA_0296.ISO
/
up_pa
/
dawn2
/
instalcd.bat
next >
Wrap
DOS Batch File
|
1995-02-26
|
552b
|
33 lines
@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