Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Have you ever wanted to get a list of all the users who have ever checked files into a TFS instance? Here's how to do so from PowerShell:
tf history * /format:detailed /recursive /noprompt | Select-String "User:" | Sort-Object | Get-Unique
Note that if you want this to appear in a GUI window, drop everything starting from "/noprompt".
Rob