Reputation: 2199
I know we can get the change set history from TFS easily but i want to get the history of 'get latest version' request from TFS.
So my question is that is there any way to see a log of who and when any of the team member made a 'get latest version' request on TFS?
Upvotes: 0
Views: 651
Reputation: 23444
There is no way to achieve this on Visual Studio Team Services (was Team Foundation Service).
If you describe what you are trying to achieve then maybe there is another way to achieve this.
Upvotes: 1
Reputation: 22255
TFS keeps a command log that keeps track of this, but I believe it only keeps the last 7 days of commands. I know some teams setup a SQL job that exports the command log every few days so they can keep more than 7 days of history.
You can see the Command log by going to the URL: http:/tfsserver:port/tfs/_oi
You can also query the SQL table tbl_Command, although this is not officially supported.
Upvotes: 0