目前正在尝试使用 PowerShell 工作流来处理我正在并行执行的一些远程服务器内容。
我没有运气试图让Invoke-Command
登录服务器真正工作。它没有抛出错误,但也没有像通常的Write-Host
语句那样输出到控制台。没有看到任何可以帮助我浏览旧帖子的东西。
workflow test {
Param([System.Management.Automation.PSCredential]$cred)
InlineScript {
Write-Host $using:cred
Invoke-Command -Computer "server" -Credential $using:cred -ScriptBlock { Write-Host "hello world" } }
}
}
#Calling the function
test $cred