Version
Navicat Premium 15 (Windows)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| @echo off
echo Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration15XCS echo waiting...... reg delete "HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration15XCS" /va /f echo.
echo Delete Info folder under HKEY_CURRENT_USER\Software\Classes\CLSID echo waiting......
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\Classes\CLSID" /s | findstr /E Info"') do ( reg delete %%i /va /f )
echo. echo Finish
pause
|