Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to deal with navicat after its probationary period

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.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report