Advertisement
Guest User

Untitled

a guest
Nov 24th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. REM Delete eval folder with licence key and options.xml which contains a reference to it
  2. for %%I in ("WebStorm", "IntelliJ", "CLion") 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