Interacting with a Repo in TFVC is working fine through Visual Studio. I'm trying to pull the history on the command line and write it to a CSV.
tf folderdiff $/<serverFolder> F:\<localFolder> /recursive /noprompt /collection:http://myserver:8080/tfs/DefaultCollection
I get a 404, I've tried looking at the LoginType switch, but can't find anything to pass windows integrated authentication.
How can I passthrough Windows Authentication on the command line?
tfcan be quite picky when it comes to the collection URI, you guess that the format could be normalized quite well, buttftakes it exactly as you've passed it in.As you mentioned even a trailing
/at the end can throw it off.