Introduction#
Currently supports the latest version (16.2.3)
The method of unlimited trial reset is highly recommended by the blogger
Principle: Clear the relevant information in the registry to achieve a 14-day trial again! This method currently supports most versions of Navicat Premium.
- Advantages: No need to worry about various software backdoor issues! (Because it does not modify program files, it is safe to use)
- Disadvantages: The trial time will be prompted every time the software is started, and it only supports Navicat Premium.
Windows#
Save the following content as xxx.bat and run xxx.bat directly!
@echo off
set dn=Info
set dn2=ShellFolder
set rp=HKEY_CURRENT_USER\Software\Classes\CLSID
:: reg delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration14XCS /f %针对<strong><font color="#FF0000">navicat</font></strong>15%
reg delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration16XCS /f
reg delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Update /f
echo finding.....
for /f "tokens=*" %%a in ('reg query "%rp%"') do (
echo %%a
for /f "tokens=*" %%l in ('reg query "%%a" /f "%dn%" /s /e ^|findstr /i "%dn%"') do (
echo deleteing: %%a
reg delete %%a /f
)
for /f "tokens=*" %%l in ('reg query "%%a" /f "%dn2%" /s /e ^|findstr /i "%dn2%"') do (
echo deleteing: %%a
reg delete %%a /f
)
)
echo re trial done!
pause
exit
Note: The above script is from the internet. Ignore any error prompts during execution and judge based on the final result.
It is inconvenient to execute it manually, so you can use Windows Task Scheduler! I won't go into details here 😛
Mac#
You can refer to: https://github.com/yhan219/navicat_reset_mac
Tested and working on version 16.2.2, not tested on the latest version yet!