Skip to content

Instantly share code, notes, and snippets.

@agustik
Last active January 11, 2017 23:01
Show Gist options
  • Select an option

  • Save agustik/d334ee7756fb2640384f8469f1c2a2ac to your computer and use it in GitHub Desktop.

Select an option

Save agustik/d334ee7756fb2640384f8469f1c2a2ac to your computer and use it in GitHub Desktop.
Delete Chrome Extensions
@echo off
echo "Press enter to start, THIS WILL REMOVE ALL EXTENSIONS FROM CHROME"
pause
echo "Killing all Chrome processes"
taskkill -F -T -im "chrome.exe"
echo "Going into %LOCALAPPDATA%/Google/chrome/User Data/Default/Extensions"
cd "%LOCALAPPDATA%/Google/chrome/User Data/Default/Extensions"
echo "Deleting all subdirectorires"
for /d %%i in (*) do rmdir /s /q "%%i"
echo "Enter will exit this program"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment