Skip to content

Instantly share code, notes, and snippets.

@nordinrahman
Last active April 28, 2017 09:47
Show Gist options
  • Save nordinrahman/87aa21b397e68432053b6ae8aaf5bf90 to your computer and use it in GitHub Desktop.
Save nordinrahman/87aa21b397e68432053b6ae8aaf5bf90 to your computer and use it in GitHub Desktop.
Add all packages files to TFS pending changes
` from batch file
for /R packages %%f in (*.*) do "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe" vc add %%f
` from command line
for /R packages %f in (*.*) do "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe" vc add %f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment