Advertisement
Guest User

Untitled

a guest
Sep 4th, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. REM Delete eval folder with licence key and options.xml which contains a reference to it
  2. for %%I in ("WebStorm", "IntelliJ", "CLion", "PhpStorm") do (
  3.     for /d %%a in ("%USERPROFILE%\.%%I*") do (
  4.         rd /s /q "%%a/config/eval"
  5.         del /q "%%a\config\options\other.xml"
  6.     )
  7. )
  8.  
  9. REM Delete registry key and jetbrains folder (not sure if needet but however)
  10. rmdir /s /q "%USERPROFILE%\AppData\Roaming\JetBrains"
  11. reg delete "HKEY_CURRENT_USER\Software\JavaSoft" /f
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement