vote up 2 vote down star
1

I occasionally get some issues with Visual Studio and ReSharper that causes me to run

devenv.exe /ResetSettings

After doing this, the menu items under "Data" are all duplicated, and each section is duplicated. So it now looks like this:

Show Data Sources
Add New Data Source...
-------------------------
Schema Compare
Schema Compare
Data Compare
Data Compare
-------------------------
Schema Compare
Schema Compare
Data Compare
Data Compare
-------------------------
Refactor
Refactor
-------------------------
Refactor
Refactor
-------------------------
T-SQL Editor
T-SQL Editor
-------------------------
T-SQL Editor
T-SQL Editor
-------------------------
Static Code Analysis
-------------------------
Schema View

I have the MS Visual Studio Team System 2008 Database Edition GDR 2 installed, and I think that is what's causing the issue.

Is there a way to remove the duplicated items, or better yet, stop this from happening?

flag

4 Answers

vote up 3 vote down check

I found this msdn article which seems to illustrate your problem and how to fix it.

FTA

  1. Close all instances of Visual Studio Team System 2008 editions.

  2. At the Windows Command Prompt, type the following command:

    %ProgramFiles%\Microsoft Visual Studio 9.0\DBPro\DBProRepair.exe RemoveDBPro2008

  3. Press ENTER.

  4. At the Windows Command Prompt, type the following command:

%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe /ResetUser

link|flag
Btw, /ResetUser wasn't a valid option, which was strange. I just did /ResetSettings and that worked fine. – Josh Close Jun 30 at 14:09
vote up -1 vote down

I haven't seen this before but you can likely fix it by doing a repair on the installation via Add / Remove Programs.

I know that's a pretty big hammer to use, but it will likely fix the problem.

link|flag
Not sure why I got downvoted here. Explanation please? – JaredPar Jul 26 at 19:06
vote up 1 vote down

Thank you, that fixed my issue, except when I ran the last command, it told me that it was not a valid command, so I issued /ResetSettings instead of /ResetUser. It's fixed now.

link|flag
vote up 0 vote down

After calling

DBProRepair.exe RemoveDBPro2008

the menu entry "Data" in Visual Studio was disappeared. I had to run

DBProRepair.exe RestoreDBPro2008

to get it back in Visual Studio.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.