home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / vol1 / unite.zip / CRACK.CMD next >
OS/2 REXX Batch file  |  1997-02-13  |  1KB  |  40 lines

  1. /* OS/2 REXX -- PATCHPAK TOOLKIT */
  2.  
  3. PSpec = 'Unite CD-Maker V2.1c-M'
  4. FSpec = 'LIB\CTCDCAP.DLL'
  5.  
  6. Say ''
  7. Say 'This will patch' PSpec
  8. Say ''
  9. Say 'This will remove the 100 Mb limit from Cirrus CD Creator...'
  10. Say 'Just run this in the Unite Directory after installing but'
  11. Say 'before re-booting :)'
  12. Say ''
  13. Say 'If you like it...buy it! Support quality OS/2 Software...'
  14. Say '...meantime tho....have Phun! :)'
  15. Say ''
  16. Say 'AQPFEPO by SafeHex...all the way from New Delhi, India :)'
  17. Say 'BTW, AQPFEPO = Another Quality Patch For Educational Purposes Only! :>'
  18. Say ''
  19. Say ''
  20.  
  21. If ( Stream( FSpec, 'c', 'Query Exists' ) = '' ) Then Do
  22.     Say 'USAGE: Just run this in the installed' PSpec 'Directory!'
  23.     Exit
  24. End
  25.  
  26. Say 'Patching' PSpec'...'
  27.  
  28. t = CharIn(FSpec, 2049, 16)
  29. If c2x(t) \= '558BEC68BC03010064FF350000000064' Then Do
  30.     Say 'Verification Check #1 Failed...'
  31.     Exit
  32. End
  33.  
  34. Call CharOut FSpec, x2c('558BECC9C303010064FF350000000064'), 2049
  35.  
  36. Say 'Patches applied to' PSpec
  37. Say ''
  38. Say 'Feel the POWER -- OS/2 REXX!'
  39. Say 'Have Phun! Compliments of a desperate SafeHex :)'
  40.