home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / utils1 / 702to703.arj / 702TO703.BAT next >
DOS Batch File  |  1993-11-17  |  2KB  |  41 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║          QEMM patch for version 7.02 dated 9/24/93          ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to QEMM version 7.02. This  ║
  6. echo ║ patch will work ONLY on QEMM version 7.02. The date on the  ║
  7. echo ║ QEMM386.SYS file in your QEMM directory should be either    ║
  8. echo ║ 9/24/93 or 9/16/93. If the date on these files is later     ║
  9. echo ║ than 9/24/93, you do not need this patch.                   ║
  10. echo ║                                                             ║
  11. echo ║ Press any key to continue or Control-C to abort.            ║
  12. echo ╚═════════════════════════════════════════════════════════════╝
  13. pause
  14. if not exist PATCH.EXE goto error
  15. if not exist 702to703.RTP goto error
  16. if not exist QEMM386.SYS goto error
  17. patch 702to703.rtp /ignoremissing
  18. patch README.RTP /ignoremissing
  19. yesno Should the technotes be patched? [Y/N]
  20. if errorlevel 1 goto skip_technote
  21. patch technote.rtp /ignoremissing
  22. :skip_technote
  23. echo Patch complete! Now deleting patch files...
  24. del patch.exe
  25. del 702to703.rtp
  26. del README.RTP
  27. del technote.rtp
  28. del yesno.com
  29. echo Patch successfully applied; patch files deleted.
  30. goto end
  31. :error
  32. echo ╔═════════════════════════════════════════════════════════════╗
  33. echo ║ This patch should be applied by copying PATCH.EXE,          ║
  34. echo ║ 702to703.rtp, readme.rtp, technote.rtp, yesno.com,          ║
  35. echo ║ 702to703.bat into your QEMM directory, and then typing:     ║
  36. echo ║                                                             ║
  37. echo ║ 702to703                                                    ║
  38. echo ║                                                             ║
  39. echo ╚═════════════════════════════════════════════════════════════╝
  40. :end
  41.