Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New method for reset trial on news version for navicat #2

Open
jomisoac opened this issue Sep 28, 2023 · 2 comments
Open

New method for reset trial on news version for navicat #2

jomisoac opened this issue Sep 28, 2023 · 2 comments

Comments

@jomisoac
Copy link

@echo off

echo Reset Navicat remaining 14 days trial
echo.

set update=HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Update

echo 1) Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Update
echo delete: %update%
reg delete %update% /va /f
echo.

echo 2) Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration[version and language]
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium" /s | findstr /L Registration"') do (
echo delete: %%i
reg delete %%i /va /f
)
echo.

echo 3) Delete folder including Info under HKEY_CURRENT_USER\Software\Classes\CLSID
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\Classes\CLSID" /s | findstr /E Info"') do (
echo info: %%i
set all_info=%%i
)
set p_info=%all_info:~0,-5%
echo delete: %p_info%

reg delete %p_info% /f

echo.

echo 4) Delete folder including ShellFolder under HKEY_CURRENT_USER\Software\Classes\CLSID
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\Classes\CLSID" /s | findstr /E ShellFolder"') do (
set all_ShellFolder=%%i
)
echo ShellFolder: %all_ShellFolder%
set p_ShellFolder=%all_ShellFolder:~0,-12%
echo delete: %p_ShellFolder%
reg delete %p_ShellFolder% /f

echo.

echo Finish

pause

@jomisoac jomisoac changed the title New method for reste trial and news version for navicat New method for reset trial on news version for navicat Sep 28, 2023
@HabunoGD1809
Copy link

wow

@gagayu110
Copy link

mac 可以用么?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants