Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remember username/password when calling tf.exe?

I use tf.exe command to get the latest codes but it keeps asking for username/password - is there a way to make those credentials remembered?

I've looked at the tf.exe argument list but no options allowing to pass-in username/password. What can I try next?

like image 367
Nam G VU Avatar asked Nov 16 '10 04:11

Nam G VU


2 Answers

I think what you need is adding the parameter /login, i.e. /login:DOMAIN\Username,YourPassword, to your TF.exe command.

Example: TF.exe get $/Path/To/Source/On/TFSServer /recursive /login:DOMAIN\Username,YourPassword

Hope that helps!

like image 116
Nam G VU Avatar answered Nov 15 '22 14:11

Nam G VU


You can store the credentials in the Stored Windows Credentials.

See http://www.ewaldhofman.nl/post/2009/05/21/Automatically-connect-to-TFS-under-another-user-account.aspx for more information

like image 23
Ewald Hofman Avatar answered Nov 15 '22 14:11

Ewald Hofman