user4479214
user4479214

Reputation:

Changing tfs credential

I have a project in tfs. I use visual studio 2013. I removed tfs credentials from Control Panel->User Accounts->Credential-> Manager Windows Credentials. After that i can't add new credentials, project still connects to server but i lost the mapping. When i try to map the project i receive a message "The path some my path is already mapped in workspace some workspace", but i not see this workspace in the project. Can someone help me?

Upvotes: 0

Views: 165

Answers (1)

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51183

After remove tfs credentials from Windows Credentials. You also need to close and open Visual Studio 2013, then reconnected to TFS. If it still not work, try to clear TFS and VS cache. Also try to clear IE cookies and stored password, more details please refer this link.

For your situation, you can use tf workspace /delete command to delete that workspace.

List of all workspaces by the following commands:

C:\YourWorkspaceFolder>tf workspaces /owner:*

Delete the workspace with the following command:

C:\YourWorkspaceFolder>tf workspace /delete /server:BUILDSERVER WORKSPACENAME;OWNERNAME

Moreover, you can aslo use Team Foundation Sidekicks 2013 which is free and provides a GUI for viewing and deleting TFS workspaces.

Upvotes: 1

Related Questions