Reputation: 799
Every once in a while, "IntelliJ IDEA is ready to update.". In these cases, it is sometimes required to uninstall the current version and to install the new version. When that happens, the installer asks whether to uninstall the previous version silently: "Uninstall silently (settings and configuration from old versions will not be deleted)".
This to me is ambiguous. Does "uninstall silently" mean that a copy of my settings will be cluttering my file system, or does it mean that the settings will be ported to the new version? Asked the other way around: if I don't check the "uninstall silently" box, will I have to reconfigure IntelliJ from scratch?
I would like to have the update change as little as possible to my settings. So I would like to keep all the settings and plugins in the updaded version. But I don't want old bits of configuration and plugin files "lying around" on my disk. Should I check the "uninstall silently" box?
Upvotes: 5
Views: 11469
Reputation: 61
I checked both checkboxes: Uninstall silently and uninstall previous versions. The toolbox app is unnecessary, I'd even tell it's problematic.
Upvotes: 0
Reputation: 172
Use "JetBrains TOOLBOX". It is a easy way to manage your installed IDEs.
If you have updates it will indicate and you just one click away to install them
Upvotes: 7
Reputation: 37993
All IntelliJ settings are stored in a version-specific folder that is located in home directory by default. If you choose "(settings and configuration from old versions will not be deleted)" option than your settings are not deleted (obviously).
If you don't delete these settings, your home directory may look like this after a few upgrades:
user home/
├── .IntelliJIdea2017.2
├── .IntelliJIdea2017.3
└── .IntelliJIdea2018.1
You may find it interesting:
Upvotes: 7