home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Current Shareware 1994 January
/
SHAR194.ISO
/
diagutil
/
701to702.zip
/
701TO702.BAT
next >
Wrap
DOS Batch File
|
1993-09-27
|
2KB
|
44 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ QEMM patch for version 7.01 dated 6/21/93 ║
echo ║ ║
echo ║ This patchfile implements fixes to QEMM version 7.01. This ║
echo ║ patch will work ONLY on QEMM version 7.01. The date on the ║
echo ║ QEMM386.SYS file in your QEMM directory should be 6/21/93. ║
echo ║ If the date on these files is later than 6/21/93, you do ║
echo ║ 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 701to702.RTP goto error
if not exist QEMM386.SYS goto error
patch 701to702.rtp
yesno Should STEALTH.VXD be patched? [Y/N]
if errorlevel 1 goto skip_stealth
patch stealth.rtp
:skip_stealth
yesno Should the technotes be patched? [Y/N]
if errorlevel 1 goto skip_technote
patch technote.rtp
:skip_technote
echo Patch complete! Now deleting patch files...
del patch.exe
del 701to702.rtp
del stealth.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 ║ 701to702.rtp, stealth.rtp, technote.rtp, yesno.com, ║
echo ║ 701to702.bat into your QEMM directory, and then typing: ║
echo ║ ║
echo ║ 701to702 ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════╝
:end