Skip to content

Instantly share code, notes, and snippets.

@salmansayyad
salmansayyad / IntelIJTrialReset.sh
Created March 29, 2019 10:29
How to reset IntelIJ IDEA Evaluation Key in Linux
#!/bin/sh
rm ~/.IntelliJIdea*/config/eval/idea*.evaluation.key && \
sed -i '/evlsprt/d' ~/.IntelliJIdea*/config/options/other.xml && \
rm -rf ~/.java/.userPrefs/jetbrains
# It is Highly Advised to Purchase the JetBrain Softwares
# This is only for the case You just want to Extend the
# Trial Period and Evaluate the IDE for some more Time
@salmansayyad
salmansayyad / IntelIJTrialReset.bat
Created March 10, 2019 16:40
How to Reset InteIIiJ IDEA Evaluation Key in Windows
cd "C:%HOMEPATH%\.IntelliJIdea*\config"
rmdir "eval" /s /q
del "options\other.xml"
reg delete "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\jetbrains\idea" /f
:: This will work for idea 2018.3 and later
::
:: It is Highly Advised to Purchase the JetBrain Softwares
:: This is only for the case You just want to Extend the
:: Trial Period and Evaluate the IDE for some more Time