Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Duplicate Menu Items VS 2012

anyone ever run into this issue with VS 2012?

Duplicate menus

I've tried resetting my development environment back to default and that did not resolve anything. This is really frustrating.

like image 523
Keidrickp Avatar asked Apr 17 '13 13:04

Keidrickp


3 Answers

I had the same problem in Visual studio 2011. I fixed it using /setup. I'm still in the dark about the cause. DevEpxress? ReSharper? VSCommands? The combination?

The fix:

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
like image 125
realbart Avatar answered Nov 06 '22 19:11

realbart


I just resolved the issue by deleting the devenv.CTM

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

Hope this will help.

like image 1
minakshi Avatar answered Nov 06 '22 21:11

minakshi


Seems answer to this a bit deeper than people says above. Need to delete registry key and the config file and perform application reset to apply solid fix:

(Paths are question of version ran, but I'm sure who ever reads this can figure what path their installations are at.)

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

This seems to fix the issue permanently (used 60 mins, lol, what a waste).

like image 1
ITK Avatar answered Nov 06 '22 19:11

ITK