home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / memres41.zip / PATCH.BAT < prev    next >
DOS Batch File  |  1988-08-14  |  768b  |  25 lines

  1. ECHO OFF
  2. echo You may edit PATCH.INS to change both
  3. echo the drive and directory for the program
  4. echo to find VECTOR.TBL
  5. echo The name must be in asciiz format.
  6. echo PATCH.INS has a correct example.
  7. echo Note: DEBUG.COM must be in your path.
  8. echo .
  9. echo Enter Control-Break to exit.
  10. PAUSE
  11. if not exist RESDEL.EXE goto error1
  12. if not exist PATCH.INS goto error2
  13. REN RESDEL.EXE RESDEL.123
  14. DEBUG < PATCH.INS
  15. REN RESDEL.123 RESDEL.EXE
  16. goto exit
  17. :error1
  18. echo Place RESDEL.EXE in the current directory
  19. echo and then run this patch again.
  20. goto exit
  21. :error2
  22. echo Place PATCH.INS in the current directory
  23. echo and then run this patch again.
  24. :exit
  25.