Duplicate menu items VS 2012

Has anyone encountered this problem with VS 2012?

Duplicate menus

I tried resetting my development environment back to the default and did not solve anything. This is really frustrating.

+6
source share
4 answers

I had the same problem in Visual Studio 2011. I fixed it with / setup. I am still unaware of the reason. DevEpxress? ReSharper? Vscommands? Combination?

Correction:

C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE>devenv.exe /safemode /setup 

after that I started Visual Studio:

 C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE>devenv 
+9
source

I just solved the problem by deleting devenv.CTM

From path C: \ ProgramData \ Microsoft \ VisualStudio \ 12.0 \ 1033

Hope this helps.

+1
source

The answer seems to be a little deeper than people say above. You must delete the registry key and configuration file and execute the reset application to apply the hard fix:

(The paths are a question about the version, but I'm sure anyone who ever reads this can figure out which path their settings are on.)

File: C:\ProgramData\Microsoft\<version>\12.0\<countrycode>\WDExpress.CTM

Registry key: HKEY_CURRENT_USER\Software\Microsoft\<version>\<vernum>_Config\Menus

Express: "C:\Program Files\Microsoft Visual Studio <vernum>.0\Common7\IDE\WDExpress.exe" /resetuserdata

Other versions: "C:\Program Files\Microsoft Visual Studio <vernum>.0\Common7\IDE\devenv.exe" /resetuserdata

It seems that the problem is constantly fixed (60 minutes are used, LOL, what is waste).

+1
source

Open cmd in administrator mode Change dir to the dev installation path Run the command below. (but it will reset your initial settings, such as setting preferences C # at startup - this is not a big problem, I think)

Devenv.exe / resetuserdata p>

-2
source

All Articles