Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In using tfpt from the command, I'm getting the error:

PS D:\Main Line> tfpt uu /noget
Unable to determine the workspace.

Here I'm trying to use the Undo Unchanged command, but I've seen this error with other commands too. The path I'm at is the exact path that is mapped in my TFS workspace. I also tried this which doesn't work either

PS D:\Main Line> tfpt uu /recursive /noget 'D:\Main Line'
Unable to determine the workspace.

I thought it was just using the current path to figure it out, but I can't get it to work right. Does anyone know how this works?

share|improve this question

1 Answer

up vote 21 down vote accepted

I ran into this same issue, I found the answer at the bottom of the page in one of the help files that came with The power tools. (TFPTCommandLineTool.mht)

Errors

TFPT Error: Unable to determine the workspace

When running tfpt using a command that works with Version Control, you may receive one of the errors:

Unable to determine the workspace 
Unable to determine the source control server

Solutions:

  • Run tfpt from within a directory that is already mapped to Team Foundation source control.
  • Update your local workspace cache using the tf workspace command located in <drive>:\Program Files\Microsoft Visual Studio 9\Common7\IDE and is available from the Visual Studio 2008 Command Prompt. For example, enter: tf workspaces /s:serverURL
  • If you have recently installed Visual Studio 2012, you might have to connect it to the same TFS server/collection you were using in Visual Studio 2010.
share|improve this answer
2  
didn't believe this at first (running from mapped directory) - but it's true! – Simon_Weaver Mar 25 '11 at 1:44
strange... when opening Command prompt via the VSCOMMANDS tool built into the solution explorer i cannot invoke tfpt.exe . For some reason it does not pick up the environment variables. Opening via run->cmd this works like a charm being in the right directory! – felickz Aug 26 '11 at 20:14
My confusion with this issue was that I was thinking of the top level directory of my workspace as being in the workspace which it turned out not to be. All the workspace definitions were mapping directories below the root. e.g., with $/Collection/foo/bar mapped to c:\workspace\foo\bar, tf.exe won't recognize the workspace in c:\workspace or c:\workspace\foo, only in c:\workspace\foo\bar – Jeff Youngstrom Dec 6 '11 at 3:16
5  
Wouldn't it be nice if this was in the error message... – Tharwen Jun 22 '12 at 11:00
Updating the workspace cache was the trick for me as I had just renamed my workspace using Visual Studio. – Holistic Developer Oct 12 '12 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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