home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-387-Vol-3of3.iso
/
m
/
memres41.zip
/
PATCH.BAT
< prev
next >
Wrap
DOS Batch File
|
1988-08-14
|
768b
|
25 lines
ECHO OFF
echo You may edit PATCH.INS to change both
echo the drive and directory for the program
echo to find VECTOR.TBL
echo The name must be in asciiz format.
echo PATCH.INS has a correct example.
echo Note: DEBUG.COM must be in your path.
echo .
echo Enter Control-Break to exit.
PAUSE
if not exist RESDEL.EXE goto error1
if not exist PATCH.INS goto error2
REN RESDEL.EXE RESDEL.123
DEBUG < PATCH.INS
REN RESDEL.123 RESDEL.EXE
goto exit
:error1
echo Place RESDEL.EXE in the current directory
echo and then run this patch again.
goto exit
:error2
echo Place PATCH.INS in the current directory
echo and then run this patch again.
:exit