Command/TFS/GetBriefChangeHistory.ps1


Import-Module CmxModule -Force -DisableNameChecking

SetWindowTitle $MyInvocation.MyCommand.Name

$workspace = $LocalWorkspace
Write-Output "Workspace: $workspace"

$tf = GetTfPath
$result = ExecuteProcess -fileName "$tf" -arguments "history `"$workspace`" /recursive /stopafter:10 /format:brief "
Write-Output "History:"
Write-Output $result.StandardOutput


Read-Host "The script has finished. Press any key to exit"