Skip to content

Instantly share code, notes, and snippets.

@XGilmar
Last active February 24, 2025 02:41
Show Gist options
  • Save XGilmar/55f6727a40f78979a6a7f8d5885e3bdd to your computer and use it in GitHub Desktop.
Save XGilmar/55f6727a40f78979a6a7f8d5885e3bdd to your computer and use it in GitHub Desktop.
Script JetBrains trial reset
#!/bin/bash
# Colors for terminal output
RED='\033[0;31m'
GREEN='\033[0;92m'
YELLOW='\033[0;33m'
BLUE='\033[0;94m'
PURPLE='\033[0;95m'
CYAN='\033[1;96m'
WHITE='\033[0;97m'
NC='\033[0m' # No Color
#~/.config/JetBrains/
config_path=~/.config/JetBrains/
# Version variables for JetBrains products
intellij_idea_version="IntelliJIdea"
webstorm_version="WebStorm"
datagrip_version="DataGrip"
phpstorm_version="PhpStorm"
clion_version="CLion"
pycharm_version="PyCharm"
goland_version="GoLand"
rubymine_version="RubyMine"
# Function to clear the screen
clear_screen() {
clear
}
# Function to display the menu
show_menu() {
clear_screen
echo -e "${CYAN}---- RESET TRIAL IDE 1.0 ----${NC}"
echo -e "[${BLUE}0${NC}] ${PURPLE}All IDE${NC}"
echo -e "[${BLUE}1${NC}] ${WHITE}$intellij_idea_version${NC}"
echo -e "[${BLUE}2${NC}] ${WHITE}$webstorm_version${NC}"
echo -e "[${BLUE}3${NC}] ${WHITE}$datagrip_version${NC}"
echo -e "[${BLUE}4${NC}] ${WHITE}$phpstorm_version${NC}"
echo -e "[${BLUE}5${NC}] ${WHITE}$clion_version${NC}"
echo -e "[${BLUE}6${NC}] ${WHITE}$pycharm_version${NC}"
echo -e "[${BLUE}7${NC}] ${WHITE}$goland_version${NC}"
echo -e "[${BLUE}8${NC}] ${WHITE}$rubymine_version${NC}"
echo -e "[${BLUE}q${NC}] ${GREEN}Quit${NC}"
echo -e "${CYAN}-------------------------${NC}"
}
# Function to reset trial period for all products
reset_all() {
for product in $intellij_idea_version $webstorm_version $datagrip_version $phpstorm_version $clion_version $pycharm_version $goland_version $rubymine_version; do
reset_application $product
done
}
# Function to reset trial period for a specific product
reset_application() {
local product_name=$(basename $config_path"$1"*)
local name_path=$config_path"$product_name"
#echo -e "${GREEN}config located: $name_path"
if [ -d $name_path ]; then
echo -e "${BLUE}[+] Resetting trial period for ${CYAN}$product_name${NC}"
# Remove Evaluation Key
echo -e "${BLUE}[+] Removing Evaluation Key..."
rm -rf ~/.config/JetBrains/$product_name*/eval &>/dev/null
if [ $? -eq 0 ]; then
echo -e "${GREEN}[+] Evaluation Key removed successfully${NC}"
else
echo -e "${RED}[!] Failed to remove Evaluation Key${NC}"
fi
# Remove evlsprt properties from options.xml
echo -e "${BLUE}[+] Removing all evlsprt properties in options.xml..."
sed -i 's/evlsprt//' ~/.config/JetBrains/$product_name*/options/other.xml &>/dev/null
if [ $? -eq 0 ]; then
echo -e "${GREEN}[+] evlsprt properties removed successfully.${NC}"
else
echo -e "${RED}[!] Failed to remove evlsprt properties.${NC}"
fi
# Remove userPrefs files
echo -e "${BLUE}[+] Removing userPrefs files..."
rm -rf ~/.java/.userPrefs &>/dev/null
if [ $? -eq 0 ]; then
echo -e "${GREEN}[+] userPrefs files removed successfully.${NC}"
else
echo -e "${RED}[!] Failed to remove userPrefs files.${NC}"
fi
else
echo -e "${YELLOW}[warn] Directory for ${WHITE}$product_name${YELLOW} does not exist.${NC}"
fi
}
# Function to validate user selection
validate() {
case $application in
0)
reset_all
;;
1|2|3|4|5|6|7|8)
local application_name=""
case $application in
0)
application_name="All IDE"
;;
1)
application_name=$intellij_idea_version
;;
2)
application_name=$webstorm_version
;;
3)
application_name=$datagrip_version
;;
4)
application_name=$phpstorm_version
;;
5)
application_name=$clion_version
;;
6)
application_name=$pycharm_version
;;
7)
application_name=$goland_version
;;
8)
application_name=$rubymine_version
;;
esac
reset_application $application_name
;;
q|Q)
echo -e "${GREEN}========= Exit =========="
exit 0
;;
*)
echo -e "${RED}[!] Invalid selection${NC}"
;;
esac
}
# Display the menu and read user selection
show_menu
echo -e -n "${WHITE}select option:${NC}"
read application
echo -e "${CYAN}-------------------------${NC}"
# Validate user selection
validate
@DanielOberlechner
Copy link

@XGilmar
I own a Macbook Pro with M1 Max but on my machine it works like expected.
Anything I can do to help this issue that its not finding the plist files like in the screenshot from @benzmsts ?

@DanielOberlechner
Copy link

Due to the fact that this solution is not working anymore I found a new one working on all OS.
Simlpy try it out.

https://rentry.co/jetbrainsfree

It was recommened on reddit where XGilmar posted his solution:
https://www.reddit.com/r/Piracy/comments/1e5c3q8/jetbrains_reset_trial/

Works on all Jetbrains products but requires a bit of working around.

For questions just hit me up if you got problems.

@XGilmar
Copy link
Author

XGilmar commented Oct 11, 2024

@XGilmar I own a Macbook Pro with M1 Max but on my machine it works like expected. Anything I can do to help this issue that its not finding the plist files like in the screenshot from @benzmsts ?

Yes, I will be grateful if someone can help me using their Mac to solve the routing problem.

@DanielOberlechner
Copy link

@XGilmar
Just tell me how I can help you. to contact me visit my github profile.

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