PowerShell 技能连载 - 用 Out-GridView 做为输出窗口

通常,Out-GridView 打开一个窗口并且显示所有通过管道传输到该 cmdlet 的内容:

1
PS C:\> Get-Service | Out-GridView

然而,通过一点技巧,Out-GridView 就会变得更强大。您可以随时将信息通过管道传输到相同的输出窗口。

First, get yourself an instance of Out-GridView that thinks it is running in a pipeline:
首先,获取一个 Out-GridView 的实例,然后认为它在一个管道中运行:

1
2
$pipeline = { Out-GridView }.GetSteppablePipeline()
$pipeline.Begin($true)

现在,您可以通过调用 “Process“ 来输出任何信息。每次调用 Process() 都好比将一个元素通过管道传给 cmdlet:

1
2
3
$pipeline.Process('Hello this is awesome!')
Start-Sleep -Seconds 4
$pipeline.Process('You can output any time...')

当操作完成时,调用 End() 结束管道:

1
$pipeline.End()

通过这种方式,您可以将信息记录到网格视图中,或者将其用作向用户显示结果的通用输出窗口。

PowerShell 技能连载 - 用 Out-GridView 做为输出窗口

http://blog.vichamp.com/2019/07/01/use-out-gridview-as-output-window/

作者

吴波

发布于

2019-07-01

更新于

2022-07-06

许可协议

评论