home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 10 / The_Pier_Shareware_Number_10_(The_Pier_Exchange)_(1996).iso / 034 / 800to801.exe / RUNME.BAT < prev   
DOS Batch File  |  1996-02-09  |  2KB  |  36 lines

  1. @echo off
  2. echo ╔═════════════════════════════════════════════════════════════╗
  3. echo ║ QEMM patch for version 8.00 dated 11/04/95                  ║
  4. echo ║                                                             ║
  5. echo ║ This patchfile implements fixes to QEMM version 8.00.       ║
  6. echo ║ This patch will only work on QEMM 8.00.  The DOSDATA.SYS    ║
  7. echo ║ in your QEMM directory should be 11/04/95.  If the date     ║
  8. echo ║ on DOSDATA.SYS is later than 11/04/95, you should not       ║
  9. echo ║ attempt to apply this patch.                                ║
  10. echo ║                                                             ║
  11. echo ║     Press any key to continue or Control-C to abort.        ║
  12. echo ╚═════════════════════════════════════════════════════════════╝
  13. @pause >nul
  14. if not exist PATCH.EX_ goto error
  15. if not exist QEMM801.RTP goto error
  16. copy PATCH.EX_ PATCH.EXE
  17. if not exist PATCH.EXE goto error
  18. patch QEMM801.rtp /ignoremissing
  19. echo Patch complete! Now deleting patch files...
  20. del patch.exe
  21. del patch.ex_
  22. del QEMM801.rtp
  23. echo Patch successfully applied; patch files deleted.
  24. goto end
  25. :error
  26. echo ╔═════════════════════════════════════════════════════════════╗
  27. echo ║ This patch should be applied by copying PATCH.EX_,          ║
  28. echo ║ QEMM801.rtp, QEMM801.pat, and runme.bat into your QEMM      ║
  29. echo ║ directory, changing directory into your QEMM directory,     ║
  30. echo ║ then typing:                                                ║
  31. echo ║                                                             ║
  32. echo ║ runme                                                       ║
  33. echo ║                                                             ║
  34. echo ╚═════════════════════════════════════════════════════════════╝
  35. :end
  36.