You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
@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
The text was updated successfully, but these errors were encountered: