Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Identifying Version of TFS via web interface

Tags:

tfs

Is there a way to get the installed version of TFS 2017 when I only have access to its web interface via HTTP?

like image 269
David Avatar asked Oct 25 '17 16:10

David


People also ask

How do I check my TFS version?

Right-click on the Microsoft. TeamFoundation. dll file, and select Properties. Under the Version tab, check the value of Product Version in the list box.

What is TFS version?

Team Foundation Version Control (TFVC) is a centralized version control system. Typically, team members have only one version of each file on their dev machines. Historical data is maintained only on the server. Branches are path-based and created on the server.

What is TFS Web portal?

The TFS web portal allows you to manage source code, work items, builds, test efforts, machines and test runs. You can open the web portal from a connected project in Visual Studio or from a web browser using the following URL: http://ServerName:8080/tfs/CollectionName/ProjectName copy.

How do I get the latest version of TFS from Visual Studio?

Right-Click In the File List, right-click the file you want to get and select Source Control > Get Latest Version. Local Toolbar In the File List, select the file(s) you want to get.


1 Answers

There's an "About" link that appears on every page in the top right corner. It may be hidden within an ellipsis menu (...).

You'll get a version number there, like 15.112.26307.0.

The list for 2015 onward is:

  • Team Foundation Server 2015:

    • RTM - 14.0.23128.0
    • Update 1 - 14.0.24712.0
    • Update 2 - 14.95.25122.0
    • Update 2.1 - 14.95.25229.0
    • Update 3 - 14.102.25423.0
    • Update 4 - 14.114.26403.0
  • Team Foundation Server 2017:

    • RC1 - 15.103.25603.0
    • RC2 - 15.105.25716.0
    • RTM - 15.105.25910.0
    • Update 1 RC1 - 15.111.26117.0
    • Update 1 RC2 - 15.112.26206.0
    • Update 1 RTM - 15.112.26301.0
    • Update 1 RTM - 15.112.26307.0
    • Update 2 RC1 - 15.117.26526.0
    • Update 2 RC2 - 15.117.26615.0
    • Update 2 RTM - 15.117.26714.0
    • Update 3 RC1 - 15.117.26912.0
    • Update 3 - 15.117.27024.0
  • Team Foundation Server 2018:

    • RC1 - 16.121.26818.0
    • RC2 - 16.122.26918.3
    • RTM - 16.122.27102.1
    • Update 1 - 16.122.27409.2
    • Update 2 - 16.131.27701.1
    • Update 3 - 16.131.28106.2
  • Azure DevOpvs Server 2019:

    • RTM - 17.143.28511.3
    • Update 1 - 17.153.29522.3
  • Azure DevOpvs Server 2020:

    • RC1 - 18.170.30308.2
    • RC2 - 18.170.30331.4
    • RTM - 18.170.30830.2
    • Update 1 - 18.181.31230.2

Ref: https://docs.microsoft.com/en-us/azure/devops/release-notes/features-timeline#azure-devops-server-build-numbers

like image 200
Daniel Mann Avatar answered Sep 23 '22 14:09

Daniel Mann