home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
utils1
/
703to704.arj
/
RUNME.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-04-15
|
2KB
|
39 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ QEMM patch for version 7.03 dated 11/17/94 ║
echo ║ ║
echo ║ This patchfile implements fixes to QEMM version 7.03. This ║
echo ║ patch will work ONLY on QEMM version 7.03. The date on the ║
echo ║ QEMM386.SYS file in your QEMM directory should be ║
echo ║ 11/17/94. If the date on these files is later ║
echo ║ than 11/17/94, you do not need this patch. ║
echo ║ ║
echo ║ Press any key to continue or Control-C to abort. ║
echo ╚═════════════════════════════════════════════════════════════╝
pause
ren patch.ex_ patch.exe
if not exist PATCH.EXE goto error
if not exist 703to704.RTP goto error
patch 703to704.rtp
copy technote.rtp technote
cd technote
..\patch technote.rtp
del technote.rtp
cd ..
echo Patch complete! Now deleting patch files...
del patch.exe
del 703to704.rtp
del technote.rtp
echo Patch successfully applied; patch files deleted.
goto end
:error
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ This patch should be applied by copying PATCH.EX_, ║
echo ║ 703to704.RTP, TECHNOTE.RTP and RUNME.BAT into your QEMM ║
echo ║ directory. Then rename PATCH.EX_ to PATCH.EXE and type: ║
echo ║ ║
echo ║ RUNME ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════╝
:end