Last active
January 11, 2017 23:01
-
-
Save agustik/d334ee7756fb2640384f8469f1c2a2ac to your computer and use it in GitHub Desktop.
Delete Chrome Extensions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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