1

現在、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
4

1 に答える 1