home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HomeWare 14
/
HOMEWARE14.bin
/
utils1
/
262to263.arj
/
RUNME.BAT
< prev
Wrap
DOS Batch File
|
1994-06-15
|
2KB
|
44 lines
echo off
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ DESQview patch for version 2.62 dated 12/01/93 ║
echo ║ ║
echo ║ This patchfile implements fixes to DESQview version 2.62. ║
echo ║ This patch will work ONLY on DESQview version 2.62. The ║
echo ║ date on the DV.EXE file in your DV directory should be ║
echo ║ 12/01/93. If the date on these files is later than ║
echo ║ 12/01/93, you do not need this patch. ║
echo ║ ║
echo ║ Do not run inside DESQview, as the files being used by DV ║
echo ║ will not be patched. Quit DV then run this file again. ║
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 262263.RTP goto error
if not exist DV.EXE goto error
patch 262263.rtp
patch mft.rtp
echo Patch complete! Now deleting patch files...
del patch.exe
del 262263.rtp
del mft.rtp
echo Patch successfully applied; patch files deleted.
goto end
:error
echo ╔══════════════════════════════════════════════════════╗
echo ║ This patch should be applied by copying PATCH.EX_, ║
echo ║ 262263.rtp, mft.rtp and RUNME.BAT into your DV ║
echo ║ directory, then type: ║
echo ║ ║
echo ║ RUNME ║
echo ║ ║
echo ║ Do not run inside DESQview, as the files being ║
echo ║ used by DV will not be patched. ║
echo ║ ║
echo ║ Quit DV then run this file again. ║
echo ║ ║
echo ╚══════════════════════════════════════════════════════╝
:end