You can probably get what you need from the command line TF.EXE program. The command to do this should be something like this (run it from a Visual Studio command prompt):
TF.EXE history /server:http://tfs:8080 "$/" /recursive /user:username /noprompt /format:detailed
You can manipulate the "$/" to go to a more nested folder if you need to reduce your output.
You'll also want to redirect this to a file (using > output.txt or something) as there's a lot of information here.
TF.EXE history /? will give you a list of options.