tidy folder

This commit is contained in:
2022-04-27 17:52:02 +08:00
parent 5b489c1325
commit 461e31a6c6
16 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
@echo off
echo Delete HKEY_CURRENT_USER\Software\PremiumSoft\Navicat\Registration16XCS
for /f %%i in ('"REG QUERY "HKEY_CURRENT_USER\Software\PremiumSoft\Navicat" /s | findstr /L Registration"') do (
reg delete %%i /va /f
)
echo.
echo Delete Info folder under HKEY_CURRENT_USER\Software\Classes\CLSID
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