With TFS I need to find a changeset by comment, and/or by developer. Maybe I\'m just blind today, but I don\'t see a simple way in the Source Control Explorer to do this ta
Alternatively, without having to install power tools, the following command will work if your looking for the search term findme.
Windows: tf history "$/Team Project/Development" /noprompt /recursive | findstr findme
Linux: tf history "$/Team Project/Development" /recursive | grep findme
NB. Please thank this guy if you found this useful.