1

I am just learning to use the powerscript cmdlets for PowerTools for TFS (2012), and have come across the command New-TfsChangeset, which I understand can be used as follows: New-TfsChangeset -Item "C:\fake\path" -Comment "checking in a folder" -Verbose

My question is, how could you check in multiple items in the same changeset this way? I assume -Recurse will work for all sub-folders? but what if they're not?

simonalexander2005
  • 4,338
  • 4
  • 48
  • 92

1 Answers1

2

You can use C:\fake\path*.xml. Or any list (Get-Content list.txt | where {...}).

Oxoron
  • 664
  • 1
  • 7
  • 26