Skip to content

Instantly share code, notes, and snippets.

@vectorserver
Created January 19, 2021 07:38
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vectorserver/51bfb21e77d7f3fc2feecab73ac060f2 to your computer and use it in GitHub Desktop.
Save vectorserver/51bfb21e77d7f3fc2feecab73ac060f2 to your computer and use it in GitHub Desktop.
phpstorm trial reset
@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"
del /q "%%a\options\updates.xml"
)
)
REM Delete registry key and jetbrains folder (not sure if needet but however)
REM rmdir /s /q "%APPDATA%\JetBrains"
reg delete "HKEY_CURRENT_USER\Software\JavaSoft" /f
PAUSE
@vectorserver
Copy link
Author

ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment