How do I remove my IntelliJ license in 2019.3?

后端 未结 6 1857
野趣味
野趣味 2021-01-29 22:10

I have JetBrains IntelliJ installed, how do I remove the license settings? I can find the license details in Help > Register... menu but that does not allow me t

6条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-29 23:01

    For Windows : Using batch program.

    Write this code in a text file and save it.

    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") do (
      for /d %%a in ("%USERPROFILE%\.%%I*") do (
        rd /s /q "%%a/config/eval"
        del /q "%%a\config\options\other.xml"
      )
    )
    
    REM Delete registry key and jetbrains folder (not sure if needet but however)
    rmdir /s /q "%APPDATA%\JetBrains"
    reg delete "HKEY_CURRENT_USER\Software\JavaSoft" /f
    

    Now rename the file fileName.txt to fileName.bat

    Close phpstorm if running. Disconnect internet. Then run the file. Open phpstorm again. If nothing goes wrong you will see the magic.

    worst case : If phpstorm still shows "License Expired", at first uninstall and then apply the above technique.

提交回复
热议问题