László Monda
László Monda

Reputation: 1753

Disabling Visual Studio Code update notification

How can I permanently disable this update notification?

enter image description here

Upvotes: 93

Views: 31540

Answers (5)

Prabodh Tapke
Prabodh Tapke

Reputation: 1194

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

Upvotes: 103

Jonatan Öström
Jonatan Öström

Reputation: 2629

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.

Upvotes: 1

coyotte508
coyotte508

Reputation: 9745

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

Upvotes: 7

Soleil
Soleil

Reputation: 7459

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

Upvotes: 6

elkd
elkd

Reputation: 431

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"

Upvotes: 29

Related Questions