21

The all caps in the menus for VS2012 is highly annoying, is there a setting somewhere in the IDE or elsewhere to turn it off?

BlackICE
  • 8,816
  • 3
  • 53
  • 91
  • possible duplicate of [How to disable all caps menu titles in Visual Studio 2012 RC?](http://stackoverflow.com/questions/10859173/how-to-disable-all-caps-menu-titles-in-visual-studio-2012-rc) – Edward Thomson Jun 15 '12 at 17:26
  • 1
    I agree, it is duplicate, but why did that not show up when I searched and when I put in the question title. – BlackICE Jun 15 '12 at 22:20

4 Answers4

37

There is also another way to do this, create the following registry key and set its value:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General\SuppressUppercaseConversion
REG_DWORD value: 1
Duncan Smart
  • 31,172
  • 10
  • 68
  • 70
BlackICE
  • 8,816
  • 3
  • 53
  • 91
  • 1
    I'm not sure this is correct Ajay - VS2012 does seem to store it's settings in the registry location mentioned above (it worked for me anyway) – John Sibly Feb 28 '13 at 13:53
9

You can also run this in the Power Shell

Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1
Basic
  • 26,321
  • 24
  • 115
  • 201
7

Yes; search NuGet (yes, NuGet) for VS2012 Caps.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
2

An easy way (IMO) to achieve the registry key suggested by David would be entering it through a registry-file. This can be done by saving the code underneath to a .reg-file (e.g. VS2012_MenuCasing.reg) and double-clicking it:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General\]
"SuppressUppercaseConversion"=dword:00000001

I hope it saves somebody some time...

Community
  • 1
  • 1
Yahoo Serious
  • 3,728
  • 1
  • 33
  • 37