I am trying to \"Get Latest Version\" of a particular folder from TFS, using Powershell.
I have installed the TFS Snappin, and have been using TFS P
Gotcha! with Update-TFSWorskpace. Has some helpful parameters as well. -Items is used to specify the exact items you want to update.
PS D:\Tfs\APD-RepairSolutions\Main>Update-TFSWorkspace -All -Overwrite -Force -Recurse -Items .\Database
The Workspace is replaced with updated versions of items. Thanks @Kmoraz!