-
-
Save patchthecode/6eeeea214540bb735bd54548ead4b85f to your computer and use it in GitHub Desktop.
reset intellij trial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#https://github.com/PythonicNinja/jetbrains-reset-trial-mac-osx/blob/master/runme.sh | |
for product in IntelliJIdea WebStorm DataGrip PhpStorm CLion PyCharm GoLand RubyMine Rider; do | |
echo "Closing $product" | |
ps aux | grep -i MacOs/$product | cut -d " " -f 5 | xargs kill -9 | |
echo "Resetting trial period for $product" | |
echo "removing evaluation key..." | |
rm -rf ~/Library/Preferences/$product*/eval | |
# Above path not working on latest version. Fixed below | |
rm -rf ~/Library/Application\ Support/JetBrains/$product*/eval | |
echo "removing all evlsprt properties in options.xml..." | |
sed -i '' '/evlsprt/d' ~/Library/Preferences/$product*/options/other.xml | |
# Above path not working on latest version. Fixed below | |
sed -i '' '/evlsprt/d' ~/Library/Application\ Support/JetBrains/$product*/options/other.xml | |
echo | |
done | |
echo "removing additional plist files..." | |
rm -f ~/Library/Preferences/com.apple.java.util.prefs.plist | |
rm -f ~/Library/Preferences/com.jetbrains.*.plist | |
rm -f ~/Library/Preferences/jetbrains.*.*.plist | |
echo "restarting cfprefsd" | |
killall cfprefsd | |
echo | |
echo "That's it, enjoy ;)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment