So you're setting up a new Workspace for Team Foundation and you get an error when you try and point a Source Control Project to a local folder that someone else was using as well..... Then you get the error message....
Error: "The working folder ... is already in use by another workspace on this computer"
I ran into this problem setting up a contractor's PC after the previous contractor using that PC had left.
The problem is you can't just go load up and delete workspaces unless your the owner. So in order to solve the problem I had to run a command line command for Team Foundation. Open Visual Studio 200x Command Prompt.
Tf workspace /delete developer05;<domain>\jsmith
To get that info I needed the owner name of the workspace and the workspace name. You can do
tf workspaces
You can find a list of Team Foundation (tf) commands here:
http://msdn2.microsoft.com/en-us/library/z51z7zy0(VS.80).aspx
You can see commands on that MS site, however the two most useful to me in this situation was listing the information, so I could see who was the other person blocking access, and then deleting it.
tf workspaces [/owner:ownername] [/computer:computername]
[/server:servername] [/format:(brief|detailed)]
tf workspace /delete [/server:servername] workspacename[;workspaceowner]
Note: Common mistake is to forget the domain name of the owner if you are on a domain. <domain>\UserName
bd24a8f9-993a-4c36-9803-053ecff9c6a2|0|.0
Troubleshooting, Visual Studio, Developer Tools
team foundation, tfs, visual studio, troubleshooting