gpt4 book ai didi

powershell - 如何在主机控制台上显示运行空间子Powershell对象流?

转载 作者:行者123 更新时间:2023-12-03 00:00:26 27 4
gpt4 key购买 nike

我在Powershell应用程序中有一些Powershell objects(使用[PowerShell]::Create()创建)充当线程。

如何在运行本身期间,不仅在线程终止之后,在调用者的控制台上显示流数据(详细流和错误流)?

最佳答案

需要在线程环境中将$VerbosePreference设置为“continue”。它也可以在实际执行脚本之前应用于管道:

$pipeline = [PowerShell]::Create()
$pipeline.RunspacePool = $pool

if ($PSBoundParameters['Verbose'].IsPresent) {
$pipeline.AddScript({ $VerbosePreference = "Continue" }, $false).Invoke()
$pipeline.Commands.Clear()
}

... $pipeline execution code ...

关于powershell - 如何在主机控制台上显示运行空间子Powershell对象流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31311734/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com