213897
213897

Reputation: 1591

TFS command line client default location

If I'm using the TFS command line client is it always located @ <drive>:\Program Files\Microsoft Visual Studio 8\Common7\IDE? I'm referencing this page.

Upvotes: 3

Views: 6528

Answers (4)

Lei Yang
Lei Yang

Reputation: 4365

For reference only,My default location is
C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE
vs2010,win7,64 bit

Upvotes: 3

timB33
timB33

Reputation: 1987

Nope, depends on VS version installed (and don't forget 64 bit machines too)

Upvotes: 3

Jehan33
Jehan33

Reputation: 3780

In VS2008, tf.exe will be available under C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE

Upvotes: 1

seva titov
seva titov

Reputation: 11920

No it is not. E.g. on my machine it is under c:\VS10\Common7\IDE. You can use environment variables VS100COMNTOOLS (for VS 2010) and VS90COMNTOOLS (for VS 2008). The location of the tfs command line tools would be

"%VS100COMNTOOLS%\..\IDE\tf.exe"

-- for VS 2010

"%VS00COMNTOOLS%\..\IDE\tf.exe"

-- for VS 2008

Upvotes: 2

Related Questions