4

考虑脚本“test.ps1:

Get-EventLog -list | gm

当从 Powershell 控制台 (".\test.ps1") 调用它时,它会按预期输出成员。

但是,以下脚本不显示“Get-EventLog -list | gm”的输出:

脚本 1

Get-EventLog -list | gm
break

脚本 2

Get-EventLog -list | gm

$yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Continua execucao"
$no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "Cancela operacao"
$options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
$result = $host.ui.PromptForChoice("Title", "Message", $options, 0) 

如果我将“Get-EventLog -list | gm”更改为“Hello World”之类的文本,在这两种情况下都会正确显示。

为什么没有显示 cmdlet 的输出?

4

1 回答 1

2

我看了一些关于 powershell 流水线的文章。使用的 cmdlet 返回对象的集合,powershell 的默认行为是将输出转发到屏幕。

这篇文章解释了break语句会中断管道(实际上,它会中断执行,直到找到父循环),从而解释了第一个例子的行为。

至于第二个例子,我假设 powershell 只会在脚本执行结束时默认重定向到控制台。由于 $host.ui.PromptForChoice 不使用第一个 cmdlet 调用的输出,而是生成它自己的输出,因此 Get-EventLog 的结果将被丢弃。

就目前而言,正如@Christian 所说,始终使用“Out-Host”是要走的路

于 2013-01-16T11:48:40.673 回答