user2992886
user2992886

Reputation: 263

Visual Studio 2013 Hide Notification Button

I have a question about Visual Studio 2013. I just installed it and it seems pretty good because of the new features.

But there is something I do not like:

Is it possible somehow removing these 3 x buttons ? Or just one of them?

Upvotes: 26

Views: 5296

Answers (3)

Dmitri Nesteruk
Dmitri Nesteruk

Reputation: 23789

You can use the Disable Social Features extension, which will programmatically hide both the 'smiley' buttons as well as your own name/photo from the front of Visual Studio.

Upvotes: 2

Maxim
Maxim

Reputation: 13458

Yes you can hide them.

Close Visual Studio.
Open regedit and find MainWindowFrameControls.

For example I want to remove: 1) Sign In 2) Notifications

So I need to delete:
{304ee989-b7c9-46c8-aa48-f080bc47cee0}
{73988e61-7e30-4e87-b891-23b5e460db21}

You can also delete them and it will work (you can remove feedback also by this way).
Although sometime VS recreates that keys. But solution is very easy - instead of deleting make right click and go to Permissions, add Everyone - Deny - Read. So now nobody will be able to read that keys including VS.
You can remove it to go to original state by the same way.

Upvotes: 35

Chris
Chris

Reputation: 8656

At the moment the social features don't seem to have any corresponding options you can use to disable them.

There is a method that relies on using Visual Commander extension to repeatedly hide some of the buttons (as Visual Studio often recreates them), which seems like the closest you'll get for the moment.

http://visualstudioextensions.vlasovstudio.com/2013/10/19/hide-sign-in-and-feedback-buttons-in-the-visual-studio-2013-main-window/ - You can view the code in the "Extensions" section.

Unless you're desparate to get rid of them, you're probably better of trying to ignore them, hopefully an option to hide them will become available.

Upvotes: 4

Related Questions