home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
utils1
/
702to703.arj
/
702TO703.BAT
next >
Wrap
DOS Batch File
|
1993-11-17
|
2KB
|
41 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ QEMM patch for version 7.02 dated 9/24/93 ║
echo ║ ║
echo ║ This patchfile implements fixes to QEMM version 7.02. This ║
echo ║ patch will work ONLY on QEMM version 7.02. The date on the ║
echo ║ QEMM386.SYS file in your QEMM directory should be either ║
echo ║ 9/24/93 or 9/16/93. If the date on these files is later ║
echo ║ than 9/24/93, you do not need this patch. ║
echo ║ ║
echo ║ Press any key to continue or Control-C to abort. ║
echo ╚═════════════════════════════════════════════════════════════╝
pause
if not exist PATCH.EXE goto error
if not exist 702to703.RTP goto error
if not exist QEMM386.SYS goto error
patch 702to703.rtp /ignoremissing
patch README.RTP /ignoremissing
yesno Should the technotes be patched? [Y/N]
if errorlevel 1 goto skip_technote
patch technote.rtp /ignoremissing
:skip_technote
echo Patch complete! Now deleting patch files...
del patch.exe
del 702to703.rtp
del README.RTP
del technote.rtp
del yesno.com
echo Patch successfully applied; patch files deleted.
goto end
:error
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ This patch should be applied by copying PATCH.EXE, ║
echo ║ 702to703.rtp, readme.rtp, technote.rtp, yesno.com, ║
echo ║ 702to703.bat into your QEMM directory, and then typing: ║
echo ║ ║
echo ║ 702to703 ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════╝
:end