Is there a way getting the tfs server time, i didn't find any method in the API which give such functionality. i have try many ways but failed to find a solution.
thanks in advance , EA
Is there a way getting the tfs server time, i didn't find any method in the API which give such functionality. i have try many ways but failed to find a solution.
thanks in advance , EA
You could use WMI to get the time from the server. I'm not sure what additional privileges you would need.
In PowerShell:
Get-WMIObject -ComputerName TfsServer -Class Win32_LocaTtime
This is, of course, something that will work for any Windows system.