Skip to content

Instantly share code, notes, and snippets.

@rjescobar
Created August 31, 2021 02:53
Show Gist options
  • Save rjescobar/4b7200d7b2274c029107ca8b9d02f3a3 to your computer and use it in GitHub Desktop.
Save rjescobar/4b7200d7b2274c029107ca8b9d02f3a3 to your computer and use it in GitHub Desktop.
JetBrains IDE trial reset windows
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 ("%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
@Mardvey-UMA
Copy link

working for Arch Linux!!!

#!/bin/bash

products=("WebStorm" "IntelliJIdea" "CLion" "Rider" "GoLand" "PhpStorm" "PyCharm")

for product in "${products[@]}"; do
    find ~/.config/JetBrains/ -maxdepth 1 -type d -name "${product}*" -exec rm -rf {}/eval \;
    
    find ~/.config/JetBrains/ -maxdepth 1 -type d -name "${product}*" -exec rm -f {}/options/other.xml \;
done

jetbrains_dirs=(
    ~/.cache/JetBrains
    ~/.local/share/JetBrains
    ~/.java/.userPrefs/jetbrains
    ~/.java/.userPrefs/prefs.xml
)

for dir in "${jetbrains_dirs[@]}"; do
    if [ -e "$dir" ]; then
        rm -rf "$dir"
    fi
done

find ~/ -type d -name ".JetBrains" -exec rm -rf {} + 2>/dev/null
find ~/ -type d -name ".idea" -exec rm -rf {} + 2>/dev/null

echo "Activated succesfull"

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