home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / FIX-123 / FIX-123.BAT next >
DOS Batch File  |  1989-10-07  |  2KB  |  53 lines

  1. Echo Off
  2. If X%1==X goto USAGE
  3. Goto %1
  4. :USAGE
  5. Echo B
  6. Echo The Dirty Birdy's Fix For Lotus 123 Release 2.2.
  7. Echo B
  8. Echo This batch file can do one of three functions to 123 Release 2.2.
  9. Echo It can [1]: Change or wipe out the Name, Company Name and Serial Number,
  10. Echo        [2]: Remove the intro screen (speeds up loading of the program), and
  11. Echo        [3]: Put the intro screen back in.
  12. Echo B
  13. Echo FIX-123 Usage:
  14. Echo Type FIX-123 FIXNAME to change Name, Company and Serial Number.
  15. Echo Type FIX-123 NOINTRO to remove the intro screen during program loading.
  16. Echo Type FIX-123 INTRO to put intro screen back in during program loading.
  17. Echo B
  18. Echo NOTE: YOU MUST HAVE DEBUG.COM IN YOUR PATH OR CURRENT DIRECTORY FOR
  19. Echo       123-FIX.BAT TO WORK PROPERLY.
  20. Echo       Also, make sure that the file 123.EXE is in the same directory
  21. Echo       as all the 123 Fix Files.
  22. Echo B
  23. Pause
  24. Goto END
  25. :NOINTRO
  26. Rename 123.EXE 123.HAK
  27. Debug 123.HAK <NOINTRO.SCR >NUL
  28. Rename 123.HAK 123.EXE
  29. Echo B
  30. Echo  Lotus 123 now set up for NO INTRO SCREEN during program loading.
  31. Echo B
  32. Pause
  33. Goto END
  34. :INTRO
  35. Rename 123.EXE 123.HAK
  36. Debug 123.HAK <INTRO.SCR >NUL
  37. Rename 123.HAK 123.EXE
  38. Echo B
  39. Echo  Lotus 123 now set up for INTRO SCREEN during program loading.
  40. Echo B
  41. Pause
  42. Goto END
  43. :FIXNAME
  44. Rename 123.EXE 123.HAK
  45. Debug 123.HAK <FIXNAME.SCR >NUL
  46. Rename 123.HAK 123.EXE
  47. Echo B
  48. Echo  Lotus 123 Name & Serial Number Stamps have been changed.
  49. Echo B
  50. Pause
  51. Goto END
  52. :END
  53.