home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / 7to701.zip / 700TO701.BAT next >
DOS Batch File  |  1993-06-21  |  2KB  |  33 lines

  1. echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║          QEMM patch for version 7.00 dated 6/08/93          ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to QEMM version 7.00. This  ║
  6. echo ║ patch will work ONLY on QEMM version 7.00. The date on the  ║
  7. echo ║ QEMM386.SYS file in your QEMM directory should be 6/08/93.  ║
  8. echo ║ If the date on these files is later than 6/08/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 700to701.RTP goto error
  16. if not exist QEMM386.SYS goto error
  17. patch 700to701.rtp
  18. echo Patch complete! Now deleting patch files...
  19. del patch.exe
  20. del 700to701.rtp
  21. echo Patch successfully applied; patch files deleted.
  22. goto end
  23. :error
  24. echo ╔═════════════════════════════════════════════════════════════╗
  25. echo ║ This patch should be applied by copying PATCH.EXE,          ║
  26. echo ║ 700to701.RTP, 700to701.BAT into your QEMM directory, and    ║
  27. echo ║ then typing                                                 ║
  28. echo ║                                                             ║
  29. echo ║ 700to701                                                    ║
  30. echo ║                                                             ║
  31. echo ╚═════════════════════════════════════════════════════════════╝
  32. :end
  33.