Skip to content

Instantly share code, notes, and snippets.

@FrancoStino
Forked from h3ssan/JetBrains trial reset.md
Created November 13, 2024 16:57
Show Gist options
  • Save FrancoStino/3a26d7842a8b61632ff075a25b949d1c to your computer and use it in GitHub Desktop.
Save FrancoStino/3a26d7842a8b61632ff075a25b949d1c to your computer and use it in GitHub Desktop.
Reset all JetBrains products trial in Linux

In some cases, only these lines will work

for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
    rm -rf ~/.config/$product*/eval 2> /dev/null
    rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null
done

But if not, try these

for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine; do
    echo "[+] Resetting trial period for $product"

    echo "[+] Removing Evaluation Key..."
    rm -rf ~/.config/$product*/eval 2> /dev/null

    # Above path not working on latest version, Fixed below
    rm -rf ~/.config/JetBrains/$product*/eval 2> /dev/null

    echo "[+] Removing all evlsprt properties in options.xml..."
    sed -i 's/evlsprt//' ~/.config/$product*/options/other.xml 2> /dev/null

    # Above path not working on latest version, Fixed below
    sed -i 's/evlsprt//' ~/.config/JetBrains/$product*/options/other.xml 2> /dev/null

    echo
done

echo "Removing userPrefs files..."
rm -rf ~/.java/.userPrefs 2> /dev/null

If not works on Mac OS, then run the following code:

rm -rf ~/Library/Preferences/com.apple.java.util.prefs.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment