gpt4 book ai didi

powershell - 如何捕获使用Powershell的Invoke-Command调用的ScriptBlock的返回值

转载 作者:行者123 更新时间:2023-12-03 09:20:15 24 4
gpt4 key购买 nike

我的问题与this one非常相似,除了我试图使用Invoke-Command捕获ScriptBlock的返回码(所以我不能使用-FilePath选项)。这是我的代码:

Invoke-Command -computername $server {\\fileserver\script.cmd $args} -ArgumentList $args
exit $LASTEXITCODE

问题在于Invoke-Command不能捕获script.cmd的返回码,因此我无法知道它是否失败。我需要能够知道script.cmd是否失败。

我也尝试使用New-PSSession(它使我可以在远程服务器上查看script.cmd的返回代码),但是我找不到任何将其传递回调用Powershell脚本的方法,可以对失败进行任何处理。

最佳答案

$remotesession = new-pssession -computername localhost
invoke-command -ScriptBlock { cmd /c exit 2} -Session $remotesession
$remotelastexitcode = invoke-command -ScriptBlock { $lastexitcode} -Session $remotesession
$remotelastexitcode # will return 2 in this example
  • 使用new-pssession新建一个 session
  • 在此 session 中调用您的脚本
  • 从此 session 中获取lastexitcode
  • 关于powershell - 如何捕获使用Powershell的Invoke-Command调用的ScriptBlock的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8549184/

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