Reputation: 2775
I've been trying to get rid of the all caps menu in VS express for desktop but to no avail. I've tried the usual registry hack by putting this into powershell
Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1
But there is no General
folder contained in the 11.0
folder, so that option fails.
I've also tried to install an extension that allows you to turn off all caps
http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8
but that just fails to install with the error VSIXInstaller.NoApplicableSKUsException:...
So. As small a problem as this is, it is really annoying me that I can't do anything about it. Any help would be appreciated.
Upvotes: 0
Views: 256
Reputation: 19021
According to this, the key would be HKCU:\Software\Microsoft\WDExpress\11.0\General.
Upvotes: 3