将函数名称作为变量传递给脚本块(函数:$ Variable)

时间:2017-07-31 10:35:34

标签: powershell

我羞耻地抄袭@mjolinor here给出的答案的一部分,它一直有效,直到我用copy-fileHC替换$FunctionName。我需要能够传递函数的名称作为变量调用。

我想我会被抓住,因为脚本块无法看到' $ FunctionName变量,但我不确定如何让它工作。我试过传递一个单独的param($functionName)但是,它仍然没有用。

到目前为止,这是我的脚本(有效):

Function Invoke-FunctionRunAs
{
    [cmdletbinding()]
    Param
    (
        [string]$FunctionName,
        [HashTable]$FunctionParameters,
        [System.Management.Automation.CredentialAttribute()]$Credentials
    )

    $CallingUser = [Security.Principal.WindowsIdentity]::GetCurrent().Name

    $RunAsDomain = $credentials.GetNetworkCredential().Domain
    $RunAsUser = $Credentials.GetNetworkCredential().username

    if(-not($RunAsDomain))
    {
        $RunAsDomain = "."
    }

    #$functionParameters.Add('FunctionName', $FunctionName)    

    Write-Verbose "Calling user: $CallingUser"
    Write-Verbose "Attempting to run scriptblock as $RunAsDomain\$RunAsUser"
    Write-Verbose "Called function: $functionName"
    Write-Verbose ("Passed parameters: $($FunctionParameters | Out-String)") 
    #$FunctionName = "Function:$FunctionName"

    $ScriptBlock = [scriptblock]::Create(".{${Function:Test-Function}} $(&{$args}@FunctionParameters)") #https://stackoverflow.com/questions/28234509/powershell-splatting-the-argumentlist-on-invoke-command

    $ScriptBlock
    Invoke-Command -ComputerName . -Credential $credentials -ScriptBlock $ScriptBlock #-ArgumentList $FunctionName

}

并且这样称呼:

$params = @{
    Contents = "'Some new text. 003'"
    Number = 3.54*10
}

$credential = New-Object System.Management.Automation.PSCredential('COMPUTER\SomeUser',(ConvertTo-SecureString 'SomeUserPassword' -AsPlainText -Force))

Invoke-FunctionRunAs -FunctionName "Test-Function" -FunctionParameters $params -Credentials $credential -Verbose

但是,将function:Test-Function替换为function:$FunctionName并不起作用。它根本没有看到这个功能。 $ scriptblock的输出如下所示:

.{} -Number: 35.4 -Contents: 'Some new text. 003'

当它工作时,整个功能将打印在{}

在之前的类似的question of mine中,@ Daryl在函数名称中出现了问题,所以为了测试,我将Test-Function重命名为TestFunction,但无济于事。

我很感激任何建议/想法。

(PS V 5.1 / Win 10)

1 个答案:

答案 0 :(得分:1)

解析器会将$functionName识别为文字函数名称。请改为使用Get-Content代替function:驱动器:

$functionDefinition = Get-Content function:\$functionName
$ScriptBlock = [scriptblock]::Create(".{${functionDefinition}} $(&{$args}@FunctionParameters)")

如果函数名实际上没有引用现有函数,这也允许一些正确的错误处理:

try{
    $functionDefinition = Get-Content function:\$functionName -ErrorAction Stop
    $ScriptBlock = [scriptblock]::Create(".{${functionDefinition}} $(&{$args}@FunctionParameters)")
}
catch{
    throw New-Object Exception "Function $functionName was not found in the current execution context",$_
    return
}