我正在使用 System.Diagnostics.Process,因为它允许我获取错误代码和相关错误。
但是,当我设置StartInfo.RedirectStandardOutput = $false
输出时不会回显到我的控制台窗口,所以目前我被迫添加一个额外的 by-ref 参数 $stdout 并从调用函数中回显它。
这并不理想,因为某些命令可能会生成大量文本,而且我担心缓冲区溢出。
我仍然可以使用下面类似的 System.Diagnostics.Process 代码的任何方式,仍然将错误捕获到字符串,但让输出正常流向控制台而不重定向到标准输出?
function Run([string] $runCommand,[string] $runArguments,[ref] [string] $stderr)
{
$p = New-Object System.Diagnostics.Process
$p.StartInfo = New-Object System.Diagnostics.ProcessStartInfo;
$p.StartInfo.FileName = $runCommand
$p.StartInfo.Arguments = $runArguments
$p.StartInfo.CreateNoWindow = $true
$p.StartInfo.RedirectStandardError = $true
$p.StartInfo.RedirectStandardOutput = $false
$p.StartInfo.UseShellExecute = $false
$p.Start() | Out-Null
$p.WaitForExit()
$code = $p.ExitCode
$stderr.value = $p.StandardError.ReadToEnd()
# what I have been doing is using a stdout by-ref variable and echoing out contents
# $stdout.value = $p.StandardOutput.ReadToEnd()
return $code
}