我写了以下代码:

cls
function GetFoo() {
    function GetBar() {
        $bar = "bar"
        $bar
    }

    $foo = "foo"
    $bar = GetBar
    $foo
    $bar
}


$cred = Get-Credential "firmwide\srabhi_adm"
$result = Invoke-Command -Credential $cred -ComputerName localhost
-ScriptBlock ${function:GetFoo}
Write-Host $result[0]
Write-Host $result[1]

它有效,但是我不想在GetBar内定义GetFoo

我可以做这样的事情吗?
cls
function GetBar() {
    $bar = "bar"
    $bar
}

function GetFoo() {
    $foo = "foo"
    $bar = GetBar
    $foo
    $bar
}


$cred = Get-Credential "firmwide\srabhi_adm"
$result = Invoke-Command -Credential $cred -ComputerName localhost
-ScriptBlock ${function:GetFoo; function:GetBar; call GetFoo}
Write-Host $result[0]
Write-Host $result[1]

基本上,我选择性地将想要的功能放在ScriptBlock中,然后调用其中之一。这样,我不必在函数内部定义函数,并且可以通过注入(inject)要成为该ScriptBlock一部分的函数来构造ScriptBlock。

最佳答案

问题是Invoke-Command只能看到ScriptBlock内部的内容,而看不到外部定义的函数。如果您确实要-可以在一行中运行所有内容,如下所示:

$result = Invoke-Command  -ComputerName localhost  -ScriptBlock { function GetBar() { $bar = "bar"; $bar }; function GetFoo() { $foo = "foo"; $bar = GetBar; $foo;  $bar }; GetFoo }

但我个人建议您将函数保存在脚本中,并使用Invoke-Command参数调用-FilePath,如下所示:
$result = Invoke-Command  -ComputerName localhost  -FilePath "\1.ps1"

关于powershell - PowerShell ScriptBlock和多个功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13100945/

10-11 09:05