Page '312e8a59-2712-48a1-863e-0ef4e67961fc' not found using Visual Studio 2012

Visual Studio

Visual Studio Problem Overview


When I click on the home-icon of Team Explorer, I get the following error:

> Page '312e8a59-2712-48a1-863e-0ef4e67961fc' not found instead of all the options.

I have this error since I reinstalled the Visual Studio 2012 Ultimate trial and installed the Visual Studio 2012 Premium edition. Repair and reinstall didn't work out.

Visual Studio Solutions


Solution 1 - Visual Studio

To fix this, run this from the Visual Studio command prompt as administrator:

devenv /setup

It will not mess up your environment, and you can just continue to use Visual Studio afterwards was my experience.

Solution 2 - Visual Studio

I had the same error in Visual Studio 2013 and tried:

Control PanelPrograms .... → Visual StudioRepair

It did not work

devenv /setup

It did not work

devenv /clearcache
devenv /updateconfiguration

It did not work

And then THE solution:

  • *Close all Visual Studio instances
  • Delete the %LOCALAPPDATA%\Microsoft\VisualStudio\12.0\ComponentModelCache folder
  • Start Visual Studio

It is explained in more detail in this blog post: When the EditorPackage does not load correctly

Solution 3 - Visual Studio

I had this error on Visual Studio 2013 Ultimate - Windows 8:

Team Explorer Error

And I solved this problem running this command:

X64: devenv.exe /resetskippkgs
x86: C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe /resetskippkgs

Solution 4 - Visual Studio

> I faced similar issue. Running devenv /setup did not help me.

Just wanted to share some additional info:

At first, devenv /setup did not help me as well. Then I realized that I was using the wrong Visual Studio command prompt version.

Make sure that you run devenv /setup for the appropriate Visual Studio version.

For example: for Visual Studio 2013, use the "Developer Command Prompt" under the Visual studio 2013 "Visual Studio Tools" folder.

*And like it stated in the selected answer, run as administrator.

Solution 5 - Visual Studio

I ran the suggested command: devenv /setup. It didn´t work for me. (Visual Studio 2015)

Then after that I tried something different:

-> Run Visual studio as administrator, after ran the command.

Then the problem was solved.

Solution 6 - Visual Studio

Running Visual Studio as administrator resolves this for me.

Solution 7 - Visual Studio

After I reinstalled my Visual Studio 2012 Trial, I've never deleted the documents directory. In this directory there were some backup files. This maybe have caused the problem.

After deleting this directory and installing Visual Studio 2012 Premium again the problem was solved.

Solution 8 - Visual Studio

I faced a similar issue. Running devenv /setup did not help me.

I found Fixing 312e8a59-2712-48a1-863e-0ef4e67961fc-not-found-vs-2012. This link suggests that I might have recently installed some Visual Studio extensions, which might have corrupted the Visual Studio maintained cache. I uninstalled a couple of the latest Visual Studio extensions, and it solved the issue after Visual Studio's restart. Visual Studio is able to connect with TFS :-).

One can find Visual Studio extensions at menu Tools → *"Extensions and Updates...". Go to the "All" section under Installed section. It will show all Visual Studio extensions.

Solution 9 - Visual Studio

I had a similar error, and then I tried running "devenv /setup" and no good result. That's was because you don't not trying with specific version Visual Studio command prompt. I then opened the command prompt for the specific version "Visual Studio 2013", and the problem was solved.

Solution 10 - Visual Studio

I had the same exact issue in Visual Studio 2013. I renamed ComponentModelCache to ComponentModelCache2, and it fixed it.

C:\Users\{..}\AppData\Local\Microsoft\VisualStudio\12.0\ComponentModelCache

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionhenkieeeView Question on Stackoverflow
Solution 1 - Visual StudioFilip CornelissenView Answer on Stackoverflow
Solution 2 - Visual StudioohnezahnView Answer on Stackoverflow
Solution 3 - Visual StudioTotPeRoView Answer on Stackoverflow
Solution 4 - Visual StudiojoelMendozaView Answer on Stackoverflow
Solution 5 - Visual StudiogabrielbarceloscnView Answer on Stackoverflow
Solution 6 - Visual StudioKirkView Answer on Stackoverflow
Solution 7 - Visual StudiohenkieeeView Answer on Stackoverflow
Solution 8 - Visual StudioVikrantView Answer on Stackoverflow
Solution 9 - Visual StudioRafael Andrs Cspedes BasterioView Answer on Stackoverflow
Solution 10 - Visual StudioamarView Answer on Stackoverflow