当我运行时在powershell中
Get-TfsItemHistory . -Recurse -Version C13855~C14103
我收到错误Unable to determine the source control server.
如果我正在运行 tfpt.exe,我可以简单地执行tf workspaces /s:serverUrl
.
我怎样才能克服这个错误?
当我运行时在powershell中
Get-TfsItemHistory . -Recurse -Version C13855~C14103
我收到错误Unable to determine the source control server.
如果我正在运行 tfpt.exe,我可以简单地执行tf workspaces /s:serverUrl
.
我怎样才能克服这个错误?
在 PS 中运行这 4 个命令修复了问题
Add-PSSnapin Microsoft.TeamFoundation.PowerShell
$tfsServerString = "http://server:8080/tfs/optionalName"
$tfs = get-tfsserver $tfsServerString
Get-TfsItemHistory $/TeamProjectName -Recurse -Version C13855~C14103 -Server $tfs | fl Comment,ChangesetId,CreationDate,Committer
此问题特定于 x64 窗口。