home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Action 1996 February
/
PCA_0296.ISO
/
up_pa
/
dawn2
/
instalpc.bat
< prev
next >
Wrap
DOS Batch File
|
1995-02-24
|
450b
|
28 lines
@echo off
if "%1"=="" goto define
goto ready
:define
cls
echo Syntax: INSTALPC C:\PATH\DAWNPTRL
goto end
:error
cls
echo Error: Dawn Patrol not found at %1
goto end
:ready
cls
IF NOT EXIST %1\PATROL.EXE goto error
cls
echo Dawn Patrol update is now being installed to %1
update -d -o %1
del %1\cdpatch.bat
echo Installation complete. Please log onto hard disk and run SVGATEST
echo and PATROL ? again.
goto end
:end