home *** CD-ROM | disk | FTP | other *** search
/ Hall of Fame / HallofFameCDROM.cdr / open / unprtc.lzh / LOTUS.UNP < prev    next >
Text File  |  1984-01-16  |  2KB  |  46 lines

  1. UNPROTECT LOTUS 1-2-3
  2.  
  3. There is a simple way of unprotecting 1-2-3 so that all the files may 
  4. reside on your hard disk or to enable backup copies to be made.  there is 
  5. only one file really protected:1-2-3.EXE.  1-2-3.EXE checks the timing of 
  6. sectors 19 and 20 to see that it takes .1 seconds longer than 21 and 22 
  7. and that 38 and 39 take .1 seconds longer than 40 and 41.
  8.  
  9. To unprotect 1-2-3, just make a copy of the Master disk using DISKCOPY 
  10. (ignore the errors).  Place your copied disk in Drive B and Rename 
  11. 123.EXE to 123.XYZ.  Now you must use DEBUG on 123.XYZ.
  12.  
  13. DEBUG B:123.XYZ
  14. S DS:100 FFFF E8 BE 71  (This to find the call to the timing checker.)
  15. 04FA:3666               (The location where it is at.)
  16. E 3666 90 90 90         (NOP it out.)
  17. W                       (Write patches)
  18. Q                       (Exit DEBUG)
  19.  
  20. Now Rename the patched version of 123.XYZ back to 123.EXE:
  21.    RENAME B:123.XYZ 123.EXE
  22.  
  23.  
  24. UNPROTECT THE NEWEST VERSION OF 1-2-3
  25.  
  26. The above patch is for the original version of 123.EXE.
  27.  
  28. Version 1A of Lotus 1-2-3 can be unprotected with the following patch
  29. (it uses a different technique).
  30.  
  31.    1. Rename 123.EXE to 123.XYZ
  32.    2. DEBUG 123.XYZ
  33.    3. Type U ABA9
  34.    4. You should see INT 13 at that address
  35.    5. Type E ABA9 90 90
  36.    6. Type W
  37.    7. Type Q
  38.    8. Rename 123.XYZ back to 123.EXE
  39.  
  40. That's it. Good luck and please remember this information is for your 
  41. benefit only and not to be used for pirating Lotus 1-2-3.
  42.  
  43. SOURCE: HAL-PC Newsletter, Aug. 1983
  44.         TOPCC Newsletter September 1983
  45.  
  46.