In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
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!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.