Last active
May 14, 2022 13:39
-
-
Save featuriz/049b1c8e1ed8abefbd7582be33db3299 to your computer and use it in GitHub Desktop.
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 %HOMEPATH% | |
FOR %%y IN ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") DO ( | |
FOR /D %%z IN ("C:%HOMEPATH%\AppData\Roaming\JetBrains\%%y*") DO ( | |
rmdir "%%z\eval" /s /q | |
del "%%z\options\other.xml" | |
) | |
) | |
:: cd "C:%HOMEPATH%\AppData\Roaming\JetBrains\IntelliJIdea*\" | |
:: rmdir "eval" /s /q | |
:: del "options\other.xml" | |
:: | |
:: | |
:: This works on All Idea 2021.x on Windows10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment