Skip to content

Instantly share code, notes, and snippets.

@SatoMew
Last active August 21, 2023 17:23
Show Gist options
  • Save SatoMew/c7b79e896f879d88500a7b9362c29d99 to your computer and use it in GitHub Desktop.
Save SatoMew/c7b79e896f879d88500a7b9362c29d99 to your computer and use it in GitHub Desktop.
@echo off
net session >nul 2>&1
if not %errorLevel% == 0 (
echo Administrator privileges required.
echo Right-click and select "Run as administrator".
pause
exit /b
)
cd /d %~dp0
rmdir /s /q "%APPDATA%\Rangi\Polished Map" 1>nul
reg delete "HKCR\.blk" /f 1>nul
reg delete "HKCR\Polished Map" /f 1>nul
del /q "%USERPROFILE%\Desktop\Polished Map.lnk" 1>nul
del /q "%APPDATA%\Rangi\Polished Map.prefs" 1>nul
echo Uninstalled Polished Map from:
echo shell:AppData\Rangi\Polished Map
echo Shortcut removed from the desktop.
echo Your preferences were deleted.
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment