8

I'm start using Visual Studio 2015 Enterprise and when I want to manage connections or anything else with Team Foundation Server give this error: Team Foundation Error, Page '3185ed96-1cbd-4381-a439-636973542e50' not found. What should I do?!

One thing more...I saw this but not working for me: Page not found in Visual Studio 2012

Community
  • 1
  • 1
OMID
  • 2,469
  • 4
  • 16
  • 26

2 Answers2

29

Try resetting VS to the default settings with the following commands to see if it helps.

1.devenv.exe /safemode

2.devenv.exe /resetskippkgs

3.devenv.exe /installvstemplates

4.devenv.exe /resetsettings

5.devenv.exe /resetuserdata

mosyflasher
  • 489
  • 1
  • 6
  • 16
0

This error means Team Explorer was unable to find any of its plugins, which are discovered via MEF. Running as Administrator should not be required.

The first action we should try is to close all VS instances, open a Developer Command Prompt as administrator, and run 'devenv /setup'. This will rebuild the various caches.

If this does not correct the issue, the next step is to try manually deleting the MEF cache dir. Please delete "%LocalAppData%\Microsoft\VisualStudio\15.0_\ComponentModelCache". The cache should be rebuilt on the next VS startup.

Regarding "Manage Connections" doing nothing, this was indeed a bug in the VS 2017 RC3 release. This has been fixed and is pending release.

For reference: https://developercommunity.visualstudio.com/content/problem/17942/team-explorer-does-not-work-at-all-just-shows-page.html