up vote 36 down vote favorite
15
share [g+] share [fb]

When creating a new build in Team Foundation Server, I get the following error when attempting to run the new build:

The path C:\Build\ProductReleases\FullBuildv5.4.2x\Sources is already mapped to workspace BuildServer_23.

I am unable to see a workspace by that name in the workspaces dialog.

link|improve this question

feedback

7 Answers

up vote 39 down vote accepted

Use the command line utility tf.

You can get a list of all workspaces by bringing up a Visual Studio Command Prompt and using the following command:

c:\>tf workspaces /owner:*

You should see your problem workspace in the list as well as it's owner.

You can delete the workspace with the following command:

C:\>tf workspace /delete /server:BUILDSERVER WORKSPACENAME;OWNERNAME
link|improve this answer
2  
I'm getting "Unable to determine the source control server." when running tf workspaces on the build server. Any ideas how to fix this? – Corvin Oct 15 '10 at 16:02
2  
Corvin: run the command from within the folder that is part of the workspace – Rajah Oct 22 '10 at 20:57
3  
Leave off the /server argument, it's not needed. Otherwise good answer! – techphoria414 Oct 29 '10 at 21:48
feedback

I received this error, which was caused by having two build definitions that pointed to the same source. The issue was that I used a static build directory in the Build Agent.

This forum post describes my issue and resolution exactly: http://social.msdn.microsoft.com/Forums/en-US/tfsbuild/thread/60a4138a-9b28-4c46-bdf4-f9775ce43c3e/

link|improve this answer
feedback

We had the same problem but deleting the workspace's from the TFS server did not work. (I should mention that I grabbed my colleagues VM that was already set up with his credentials.)

For me this worked: http://blogs.msdn.com/b/buckh/archive/2006/09/12/path-is-already-mapped-in-workspace.aspx

I just went into the : ...\Local Settings\Application Data\ made a search for VersionControl.config, opened up the folder that contained this file and deleted all of it's contents.

Previous to that I tried manually editing the file but it continued with the same error message.

I hope this helps.

link|improve this answer
Good discovery, I had to do this too. – Scott Langham May 24 '11 at 10:03
feedback

This is more complicated error, see other question.

link|improve this answer
feedback

If you don't have permissions on the server to delete other people's workspaces, you can just change the name of the build definition. TFS will create a new workspace and map it to "C:\Build\ProductReleases\new build name here\Sources".

link|improve this answer
feedback

For some reason I was having trouble deleting the workspace from the command-line utility. Luckily I found Team Foundation Sidekicks 2010 (from this post) which is free provides a GUI for viewing and deleting TFS workspaces, and many more useful TFS features.

link|improve this answer
I strongly suggest anyone that work with TFS to have a look at TFS Sidekicks, because it is free and has a lot of really must-have features. – Alkampfer 15 hours ago
feedback

I had a similar problem with Visual Studio 2010 complaining about an already-mapped-workspace, but instead of deleting the entire workspace, I used the following from the Visual Studio Command Prompt: "tf workspace PROBLEM_WORKSPACE_NAME". This brought up an "Edit Workspace" dialog. From there I was able to remove the path in question from the "Working Folders" list, which got rid of the error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.