How to deal with navicat after its probationary period
This article is about how to handle navicat after the trial period. Xiao Bian thinks it is quite practical, so share it for everyone to make a reference. Let's follow the editor and have a look.
Linux
Navicat is scripted on Linux, so it's easy to plug in a script before running it that resets the trial period.
Note that the script is Python 3, and each run resets the trial period to 14 days, requiring a 64-bit version of Navicat.
Just insert it before Navicat starts the script.
#!/ usr/bin/env python3# -*- coding: utf-8-*-import osimport re#regular ps = ( re.compile(r'\[Software\\\PremiumSoft\\\Data\\\\{[^\}]*\}\\\Info\].*?\ n[^\[]*'), re.compile(r'\[Software\\\\Classes\\\\CLSID\\\\\{[^\}]*\}\\\\Info\].*?\ n[^\[]*')# user.reg path regfile = os.path.join(os.environ <$'HOME'], '.navicat64','user.reg')#regular substitution with open(regfile, 'r+') as f: regstr = f.read() for p in ps: regstr = p.sub(lambda m: '', regstr) f.seek(0, 0) f.truncate() f.write(regstr)
Windows
Windows registry, feel a little trouble.
(1) Close Navicat
(2) Win + R, enter regedit Enter
HKEY_CURRENT_USER\Software\PremiumSoft\Data
HKEY_CURRENT_USER\Software\Classes\CLSID
(5) Expand each subfolder and delete it if it contains only one folder named Info.
As long as these Info are deleted, Navicat will try it out casually in the future. It can be tried for 10,000 years, if this software company does not go bankrupt.
Thank you for reading! How to deal with navicat after the trial period is shared here. I hope the above content can be of some help to everyone so that everyone can learn more knowledge. If you think the article is good, you can share it so that more people can see it!