Click here to Skip to main content
15,881,852 members
Articles / Web Development / IIS

TFS Proxy Efficiency Testing

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
26 Sep 2008CPOL14 min read 38K   197   19  
This article describes MS TFS Proxy efficiency testing depending on the internet channel rate between TFS and TFS Proxy, TFS commands, and TFS Proxy cache state. Also, this article describes the advantages of using the MS TFS Proxy on slow Internet channels.
rem @ECHO OFF
@setlocal

@SET Getpath="C:\Temp\tfsProxyTest1\"
ECHO Trying TFS diff...
ECHO.

@IF NOT [%1]==[] (@echo set proxy
  @set TFSPROXY=http://my_tfs_proxy:8081)

@cd %Getpath%

@set t1=%time%
tf diff %Getpath%*.cs /login:my_tfs_server\user_name,password /recursive /noprompt /format:Brief
echo %t1%
echo %time%

@set TFSPROXY=
ECHO.

ECHO TFS diff completed...
@endlocal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader www.maxpaulousky.com
Belarus Belarus
Max currently is a senior developer at software company.

He lives with his wife Tatiana and son Zakhar (4 yrs) in Minsk, Belarus, but they dream to live in New Zealand.

Comments and Discussions