I\'m a novice with the PowerShell and TFS cmdlets and I\'m trying to retrieve a list of changesets in an area path, and their associated work items.
I\'ve got as far as
Yes, you're on the right track. Try this as a way to view workitems associated with a changeset:
Get-TfsItemHistory "$/Project/Branch" -Version "D01/12/10~" -Recurse | Select ChangesetId -exp WorkItems | Format-Table Id,Title -GroupBy ChangesetId -Auto