I\'m using Team Foundation Server 2008 (SP 1) and I need to move multiple files from one folder to another (to retain file history). In addition to Team Explorer (with SP 1) I\
Use the tf.exe tool from the Visual studio commandline - it can handle wildcards:
tf.exe move
Example:
tf.exe move "$/My Project/V*" "$/My Project/Archive"
[EDIT] As noted in the comments: move is an alias for rename. Both commands move history.