home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Share 9
/
MEDIASHARE_09.ISO
/
utility
/
7to701.zip
/
700TO701.BAT
next >
Wrap
DOS Batch File
|
1993-06-21
|
2KB
|
33 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ QEMM patch for version 7.00 dated 6/08/93 ║
echo ║ ║
echo ║ This patchfile implements fixes to QEMM version 7.00. This ║
echo ║ patch will work ONLY on QEMM version 7.00. The date on the ║
echo ║ QEMM386.SYS file in your QEMM directory should be 6/08/93. ║
echo ║ If the date on these files is later than 6/08/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 700to701.RTP goto error
if not exist QEMM386.SYS goto error
patch 700to701.rtp
echo Patch complete! Now deleting patch files...
del patch.exe
del 700to701.rtp
echo Patch successfully applied; patch files deleted.
goto end
:error
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ This patch should be applied by copying PATCH.EXE, ║
echo ║ 700to701.RTP, 700to701.BAT into your QEMM directory, and ║
echo ║ then typing ║
echo ║ ║
echo ║ 700to701 ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════╝
:end