I want to make sure no one else is checking out the source codes so that I can make a released installer. So, I want to see 1) the #1 list of users who are checking out a specific file and 2) the #2 list of all checked out files ; but I don't know how to. Please help if you do!

Edit

A colleague show me that we can see the list #1 on per user basic by: Source Control - Team Members - Right click a user - Show Pending Changes - Done. This is great but not perfect. Would be lovely to see the whole list of every member.

One more step to follow to see the whole list Modify Query (on the left top corner) and select Display all checked out.

link|improve this question

70% accept rate
try checking out exclusive; if you can't then someone else has it checked out. Look in output window to see who has it – Mitch Wheat Nov 25 '10 at 3:44
@Mitch: A project may contain hundreds of files. Is there another way to see the list? – Nam G. VU Nov 25 '10 at 3:48
feedback

6 Answers

Open a Visual Studio 2010 Command Prompt (Start->All Programs->MS Visual Studio 2010->VS Tools). Type:

tf status /user:*

This will give you all pending changes for all users in all workspaces.

For a specific file, just type:

tf status /user:* c:\myfile.txt

More info here.

link|improve this answer
How can I get the result printed into a file? – Nam G. VU Nov 25 '10 at 9:36
Redirect the output. Example: tf status /user:* > c:\test.txt – LWoodyiii Nov 29 '10 at 13:19
feedback

I think Team Foundation Sidekicks (http://www.attrice.info/cm/tfs/) is much easier then using the command prompt.

link|improve this answer
feedback
up vote 2 down vote accepted

A colleague show me that we can see the list #1 on per user basic by: Source Control - Team Members - Right click a user - Show Pending Changes - Done. This is great but not perfect. Would be lovely to see the whole list of every member.

One more step to follow to see the whole list Modify Query (on the left top corner) and select Display all checked out.

link|improve this answer
feedback

In Visual Studio, look in the Source Control Explorer (View menu > Other Windows > Source Control Explorer). That will show you who has each file checked out and if they have an exclusive lock on the file.

link|improve this answer
@Lam: With your suggestion, I guess it is not easy to see a checked-out file which lies under tens of folder - the project would contains tens of folders/subfodlers with hundreds of files for each folder – Nam G. VU Nov 25 '10 at 4:14
feedback

Goto Views-->Other windows -->pending changes

link|improve this answer
feedback

the issue with public work spaces is that the name under User for a file checked out is to teh worksapce owner. This is the same in Side Kicks.. when checking the file back in it is under the correct user. I require a list of all files checked out and to who.

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.