Prevent Visual Studio connecting to Team Foundation Server at startup

Visual Studio automatically tries to connect to Team Foundation Server at startup, but sometimes when you frequently change TFS servers, it takes a lot of time for Visual Studio to try to connect to the last TFS used.

How can this be disabled?

+5
source share
1 answer

You can set the AutoLoadServer registry key to 0.

Go to Team Foundation Key

HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 10.0 \ TeamFoundation

Add an AutoLoadServer registry key of type REG_DWORD

enter image description here

Set to 0 so that VS does not automatically connect to TFS at startup

enter image description here

Or create a * .reg file with the following:

Visual studio 2010

Windows Registry Editor, version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 10.0 \ TeamFoundation] "AutoLoadServer" = dword: 00000000


Visual studio 2013

Windows Registry Editor, version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 12.0 \ TeamFoundation] "AutoLoadServer" = dword: 00000000


Visual studio 2015

Windows Registry Editor, version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ VisualStudio \ 14.0 \ TeamFoundation] "AutoLoadServer" = dword: 00000000

+13
source

All Articles