home *** CD-ROM | disk | FTP | other *** search
/ Phoenix CD 2.0 / Phoenix_CD.cdr / 16c / td3new.zip / PATCH.BAT < prev    next >
DOS Batch File  |  1990-11-30  |  790b  |  33 lines

  1. @echo off
  2. cls
  3. echo 
  4. echo  
  5. echo Patch To Remove Copy Protection From Test Drive III. . .
  6. echo  
  7. echo PATCH.BAT, LDIFF.COM, TD3.LZD and TD3.EXE must reside in
  8. echo current directory. Press Ctrl-Break to abort, or
  9. pause
  10. if not exist td3.exe goto error1
  11. if not exist ldiff.com goto error2
  12. if not exist td3.lzd goto error3
  13. ren td3.exe td3.org
  14. ldiff td3
  15. echo  
  16. echo Patch seems to have been completed successfully. Your original file
  17. echo TD3.EXE has been renamed to TD3.ORG.
  18. echo  
  19. echo Type 'TD3' to start program.
  20. goto end
  21. :error1
  22. echo 
  23. echo Error: TD3.EXE file missing. Patch not completed.
  24. goto end
  25. :error2
  26. echo 
  27. echo Error: LDIFF.COM file missing. Patch not completed.
  28. goto end
  29. :error3
  30. echo 
  31. echo Error: TD3.LZD file missing. Patch not completed.
  32. :end
  33.