Reputation: 1591
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
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
Reputation: 1987
Nope, depends on VS version installed (and don't forget 64 bit machines too)
Upvotes: 3
Reputation: 3780
In VS2008, tf.exe will be available under C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE
Upvotes: 1
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