Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I assume the title is self explanatory. Just want to change the look of the Visual Studio 2012 not to show menu title in all capital letters.

share|improve this question
25  
This question is going to get REALLY big. Perhaps we should begin to plan the memes and social network around the culture of this question. – Jeremy Child Jun 6 '12 at 1:09
8  
Why does MS insist on cramming this ugly look down our throats :( – Randy E Oct 8 '12 at 3:44
I don't understand the illnes of mind of people who were thinking about ability to make titles uppercase/lowercase. Who would possibly want that? – V-X Apr 30 at 11:34

6 Answers

up vote 254 down vote accepted

Richard Banks posted about a registry key for just such a tweak.

Visual Studio 2012 (Full)

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General
DWORD: SuppressUppercaseConversion
Value: 1

In PowerShell, you can run this to set that registry key and the uppercase goes away.

Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1

Visual Studio Express 2012

The above registry key is not the one that will affect Visual Studio Express 2012 RC. A comment by FormatC showed up on Banks post about the key for Express. You can find that key mentioned in Mike Gleason's answer or run the following PowerShell command to set it.

Set-ItemProperty -Path HKCU:\Software\Microsoft\VSWinExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1

Visual Studio Express 2012 for Web

Set-ItemProperty -Path HKCU:\Software\Microsoft\VWDExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1
share|improve this answer
35  
Literally the firs thing I did when I opened the new IDE... – Basic Jun 13 '12 at 16:55
5  
And it's probably obvious, but for VS Express 2012 for Web, use VWDExpress instead of VSWinExpress. – G. Lombard Jul 22 '12 at 12:02
8  
For VS Express 2012 for Windows Desktop, use WDExpress instead of VSWinExpress – jumpinjackie Sep 14 '12 at 4:34
2  
For cmd: reg add HKCU\Software\Microsoft\VisualStudio\11.0\General /v SuppressUppercaseConversion /t REG_DWORD /d 1 /f – Kevin Smyth Apr 23 at 14:40

You can download extension from visual studio gallery which will do it for you: http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8

It can also hide main menu altogether and have it appear only on mouse over or alt key press (like in IE)

enter image description here enter image description here enter image description here

share|improve this answer
This Hide Main Menu extension is extremely light-weight, if you don't want all the functionality that VSCommands gives you. – Jarrod Dixon Aug 16 '12 at 4:27
3  
@Jarrod Dixon Hide Main Menu doesn't change letter case so it is not really useful and even with menu hidden it can only show it with keyboard shortcut and does not support mouse... – user503386 Aug 17 '12 at 13:24
while VSCommands has some great features, which I use often, the way it implements the 'Sentence Case' is somewhat buggy. Eg the ".NET Reflector" menu gets rewritten as ".net reflector", all lowercase. So imo the registry key is still the way to go even if you use VSCommands. – stijn Aug 30 '12 at 10:08
@stijn great find about the sentence case issue, thanks for that. It should be fixed in latest build dl.dropbox.com/u/65031070/… It will also be availabe from Visual Studio Gallery soon. – Jarek Kardas Sep 11 '12 at 8:01
@JarekKardas thanks, I will try it out when I'm back from holidays – stijn Sep 11 '12 at 11:52

And for

Visual Studio Express 2012 for Windows Desktop

HKEY_CURRENT_USER\Software\Microsoft\WDExpress\11.0\General
DWORD: SuppressUppercaseConversion
Value: 1

I guess the reason MS omitted any mention of Visual Studio from the keyname is that such a mention might help someone identify the key :)

share|improve this answer

For express use:

HKEY_CURRENT_USER\Software\Microsoft\VSWinExpress\11.0\GeneralSuppressUppercaseConversion 

Credit to FormatC

share|improve this answer

The VS Commands extension can do this and is one of the most popular on the gallery. Worth checking out!

enter image description here

http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8?SRC=VSIDE

share|improve this answer

I have been using the following reg files to enable/disable the lowercasing in Visual Studio 2012 (Full):

http://erwinmayer.com/dl/VS2012_ALLCAPS_Toggle.zip

Just double click on VS2012_ALLCAPS_Disable.reg inside the archive to disable all caps menu titles, and VS2012_ALLCAPS_Enable.reg to re-enable them.

You can easily edit the reg files before with a text editor to see what they contain.

share|improve this answer
1  
The only solution worked for my premium version. Lost half an hour for solving this... – Alex Blokha Nov 5 '12 at 13:29
As with Alex, this is the only solution that worked me - I have Premium as well. – fre0n Dec 23 '12 at 18:30
Make sure there's no space following SuppressUppercaseConversion if you're not using the .reg file! – Poldie Apr 16 at 20:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.