how to fix Error TF30063: You are not authorized to access VS2017

前端 未结 6 991
南方客
南方客 2021-01-01 20:01

I changed my password for my TFS. But when I try to reconnect I receive the TF30063 unauthorized error.

There are many issues like this and I tried everything I coul

6条回答
  •  甜味超标
    2021-01-01 20:28

    It should be a Visual Studio 2017 credential cached token issue. You could try below ways to clear cache:

    1. Close all Visual Studio instances.

    2. Delete %LOCALAPPDATA%.IdentityService.

    There are some identity related caching going on in there, deleting the folder will force the identity system to rebuild its cache.

    • Also Clear TFS related caches %LOCALAPPDATA%\Microsoft\Team Foundation\x.0\Cache

    • Run Visual Studio as another user:

      cd C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE

      runas /netonly /user: devenv.exe

      Enter the user password, then Team Explorer > Manage Connections

    If the issue still exists, also take a look at this blog for more ways.

提交回复
热议问题