TFS command line to get all mapping information for a specific workspace

I am trying to get all the map information for a specific workspace.

When I try to execute this command, it displays a dialog box - this is not what I want.

tf workspace myworkspace 

Is there a command that gets all the information about the working folder and displays it on the console?

+5
source share
2 answers

The following command displays workspace mappings for the workspace in the current directory:

C:\projects>tf workfold

If you want to display work folder mappings for another workspace, you can specify a parameter /workspace:workspacename.

C:\>tf workfold /workspace:My_Other_Workspace

You can also manipulate workspace displays with this command.

C:\DifferentWorkfold Team Foundation $/projects/project_one

c:\projects>tf workfold $/projects/project_one C:\DifferentWorkfold

. Tf - Workfold MSDN

+10

TFS 2008 TFS 2010

C:\projects>tf workfold

.

TFS 2012 . :

Unable to determine the workspace.  You may be able to correct this by 
running the command 'tf workspaces /collection:TeamProjectCollectionUrl'

TeamProjectCollectionUrl, workfold!

+1

All Articles