引言#
目前支援最新版(16.2.3)
無限重置試用的方式,是博主較為推薦的
原理:就是清除註冊表相關資訊實現再次試用 14 天!該方式試用目前 Navicat Premium 大部分的版本。
- 好處:不擔心各種軟體後門問題!(因為非修改程式檔案,用起來安心)
- 缺點:每次啟動軟體都會提示試用時間,僅支援 Navicat Premium
Windows#
將以下內容保存成 xxx.bat 直接運行 xxx.bat 即可!
@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
注:以上腳本來源網路,執行有錯誤提示可以忽略,以最終效果來判斷
手動執行比較麻煩可以利用 Windows 定時任務!這裡不在細說😛
Mac#
可以查看:https://github.com/yhan219/navicat_reset_mac
測試 16.2.2 版本可用,更新的暫未測試!