Error TF30063: You are not authorized to access … \DefaultCollection

When I came accross this issue none of the provided answers solved this problem or if it did I didn’t like recreating the project. The way I ended up solving the issue: Clicking on the “Connect to Team Projects button” (The plug next to the home button in the Team Explorer tab) Right click the … Read more

How to disable all caps menu titles in Visual Studio

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 … Read more