Disabling Visual Studio Code update notification

Visual Studio-Code

Visual Studio-Code Problem Overview


How can I permanently disable this update notification?

enter image description here

Visual Studio-Code Solutions


Solution 1 - Visual Studio-Code

Go to File > Preferences > Settings (or hit Ctrl-,)

Here two files will open. One is "Default Settings" and other is "User Settings".

Add a new parameter in "User Settings"

"update.mode": "none"

Then save the files, VS Code will ask you to restart, and then you won't receive the update message.


In GUI configuration, the setting will look like this:

enter image description here

Solution 2 - Visual Studio-Code

For the latest versions of VS code (I am using version 1.32.2) the parameter "update.channel": "none" is deprecated. To disable updates use "update.mode": "none"

Solution 3 - Visual Studio-Code

To date, we can't deactivate only the update notification. Either you stop update, or you deactivate all notifications. For the latter: go to settings (ctrl+,) then add:

"editor.parameterHints": false

Solution 4 - Visual Studio-Code

Go in the settings with ctrl+,.

Then set "update.mode" to "manual".

VS Code will no longer check for updates on its own, but you will still be able to update it when you want to, by clicking on the cog at the bottom left:

enter image description here

Solution 5 - Visual Studio-Code

If you installed VS Code through a package manager (apt/yum/snap...) it will handle the updates and you can turn them off in code: Settings > Update: Mode > none.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLászló MondaView Question on Stackoverflow
Solution 1 - Visual Studio-CodePrabodh TapkeView Answer on Stackoverflow
Solution 2 - Visual Studio-CodeEl-shaddaiView Answer on Stackoverflow
Solution 3 - Visual Studio-CodeSoleilView Answer on Stackoverflow
Solution 4 - Visual Studio-Codecoyotte508View Answer on Stackoverflow
Solution 5 - Visual Studio-CodeJonatan ÖströmView Answer on Stackoverflow