home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / diagutil / 701to702.zip / 701TO702.BAT next >
DOS Batch File  |  1993-09-27  |  2KB  |  44 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║          QEMM patch for version 7.01 dated 6/21/93          ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to QEMM version 7.01. This  ║
  6. echo ║ patch will work ONLY on QEMM version 7.01. The date on the  ║
  7. echo ║ QEMM386.SYS file in your QEMM directory should be 6/21/93.  ║
  8. echo ║ If the date on these files is later than 6/21/93, you do    ║
  9. echo ║ 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 701to702.RTP goto error
  16. if not exist QEMM386.SYS goto error
  17. patch 701to702.rtp
  18. yesno Should STEALTH.VXD be patched? [Y/N]
  19. if errorlevel 1 goto skip_stealth
  20. patch stealth.rtp
  21. :skip_stealth
  22. yesno Should the technotes be patched? [Y/N]
  23. if errorlevel 1 goto skip_technote
  24. patch technote.rtp
  25. :skip_technote
  26. echo Patch complete! Now deleting patch files...
  27. del patch.exe
  28. del 701to702.rtp
  29. del stealth.rtp
  30. del technote.rtp
  31. del yesno.com
  32. echo Patch successfully applied; patch files deleted.
  33. goto end
  34. :error
  35. echo ╔═════════════════════════════════════════════════════════════╗
  36. echo ║ This patch should be applied by copying PATCH.EXE,          ║
  37. echo ║ 701to702.rtp, stealth.rtp, technote.rtp, yesno.com,         ║
  38. echo ║ 701to702.bat into your QEMM directory, and then typing:     ║
  39. echo ║                                                             ║
  40. echo ║ 701to702                                                    ║
  41. echo ║                                                             ║
  42. echo ╚═════════════════════════════════════════════════════════════╝
  43. :end
  44.