How to disable uppercase/capitals menus in Visual Studio 2012

If like me you're not a fan of the uppercase/capitals menu in Visual Studio S 2012 (previously VS 11), then fortunately there's a simple registry fix to stop the UI shouting at you.

You just need to set a DWORD value of 1 in the registry here:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General\SuppressUppercaseConversion

Alternatively, you can run the following PowerShell command.

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

If you're using Visual Studio Express 2012, then the same key is at

HKEY_CURRENT_USER\Software\Microsoft\VSWinExpress\11.0\General\SuppressUppercaseConversion

(VSWinExpress instead of VisualStudio)

You might also like...

Comments

James Crowley James first started this website when learning Visual Basic back in 1999 whilst studying his GCSEs. The site grew steadily over the years while being run as a hobby - to a regular monthly audience ...

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“Measuring programming progress by lines of code is like measuring aircraft building progress by weight.” - Bill Gates