One of the usual questions people ask is how to keep track of people connecting to TFS. It’s mostly for auditing purposes.
Here is a simple query that you run against the collection database to find the same.
This query will give you the list of people who are connected to the collection and the last time they connected.
It also lists the last activity and also time taken for the execution.
Select IdentityName AS ID,
StartTime AS Last_Access_Time,
Command as...(read more)
↧