user2329125
user2329125

Reputation:

Disable notifications in visual studio

Is there are a way to disable all notifications in Visual Studio Community 2017?

I mean all of them, I never want to see that flag nagging me ever again.

VS Notificiations Flag

Upvotes: 12

Views: 6167

Answers (4)

sonnyb
sonnyb

Reputation: 3524

This Visual Studio extension Hide Notifications Flag (by Michal Žůrek) will hide the notifications flag.

After installing this extension Visual Studio will not show notifications flag in header next to feedback button. Notification window with list of updates available will be still available in View > Notifications.

This is useful if you do not want to install some updates and the distinctive color of the background of the flag distracts you from working.

Upvotes: 7

Ambiguous User
Ambiguous User

Reputation: 21

One may use a network monitor and firewall to disable access to all Microsoft servers... Provided you need to use network capabilities in the program at all (I do). If you don't need network, just block Visual Studio in Windows Firewall

Upvotes: 2

ruban rk
ruban rk

Reputation: 7

  1. Right click on the Visual Studio notification in the Notifications window and click "Always Ignore"
  2. Left-click on the ReSharper "Pencil and paper icon" in the bottom-right corner and choose "Dismiss all notifications"

Upvotes: -1

Sergey Vlasov
Sergey Vlasov

Reputation: 27960

I have an extension to Hide Sign in and Feedback buttons. To hide the notifications icon instead of the feedback icon, just change GetChild(o3, 1) to GetChild(o3, 0).

Upvotes: 1

Related Questions