Skip to content

Instantly share code, notes, and snippets.

@rehannali
Last active April 8, 2021 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rehannali/4d0d0af1769c926a0e545ee83d4db3e8 to your computer and use it in GitHub Desktop.
Save rehannali/4d0d0af1769c926a0e545ee83d4db3e8 to your computer and use it in GitHub Desktop.
How to Reset InteIIiJ IDEA Evaluation Key in Windows
@echo off
REM Delete eval folder with licence key and options.xml which contains a reference to it
for %%I in ("WebStorm", "IntelliJ", "CLion", "Rider", "GoLand", "PhpStorm", "Resharper", "PyCharm") do (
for /d %%a in ("%APPDATA%\JetBrains\%%I*") do (
rd /s /q "%%a/eval"
del /q "%%a\options\other.xml"
)
)
reg delete "HKEY_CURRENT_USER\SOFTWARE\JavaSoft\Prefs\jetbrains\phpstorm\edca4a4e" /f
reg delete "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\jetbrains\idea" /f
:: It is Highly Advised to Purchase the JetBrain Softwares
:: This is only for the case You just want to Extend the
:: Trial Period and Evaluate the IDE for some more Time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment