0

なぜ

Update-TfsWorkspace [[-Item] <QualifiedItemSpec[]>] [-All] [-Force] [-Overwrite] [-Recurse] [-Version <String>]

うまくいかない?同等の tf.exe は、まったく同じフォルダーで問題なく動作します。

tf get itemspec [/version:versionspec] [/all] [/overwrite] [/force] [/preview] [/recursive] [/remap] [/noprompt]

Win8使用。

私が使用している正確なコマンドは次のとおりです。

Update-TfsWorkspace -Item "$/myfilepaht" this does NOT WORK

tf get itemspec "$/myfilepaht" #this WORKS
4

1 に答える 1

0

私は同じ問題を抱えていました(おそらく複数のワークスペースがあるためです)ので、次のコードで解決しました:

$tfsCredential = Get-Credential;
$tfsServer = Get-TfsServer -Name "https://tfs.tools4ever.com:443/tfs/t4edevnet2010" -Credential $tfsCredential;;
$tfsws = Get-TfsWorkspace -Server $tfsServer -Computer $hostname -Owner $tfsCredential.UserName;
$tfsPath = $tfsws.GetServerItemForLocalItem($filename);
$prop = Get-TfsItemProperty -Item $tfsPath -Server $tfsServer -Workspace $script:tfsws;
$tfsws.Get(@($tfsPath), [Microsoft.TeamFoundation.VersionControl.Client.VersionSpec]::Parse($prop.VersionLatest,     $script:tfsws.OwnerName)[0], [Microsoft.TeamFoundation.VersionControl.Client.RecursionType]::Full, [Microsoft.TeamFoundation.VersionControl.Client.GetOptions]::None)
于 2013-05-06T14:14:19.000 に答える