Posted On April 26, 2019

PowerShell: Error While Invoking Functions Containing 2 Parameters

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Error While Invoking Functions Containing 2 Parameters

Issue:

This function will raise an error when being invoked:

    function localFunc ($x, $y){
begin{}
process{
ping $y
ping $y
}
end{}
}

Invoke-Command -Session $elevate -ScriptBlock {
param( $x, $y, $importedFunc)

# Import the function from the variable inside parameters
[ScriptBlock]::Create($importedFunc).Invoke($x,$y)

} -ArgumentList $xValue, $yValue, ${function:localFunc}

Error:

PS U:\> C:\Users\kimconnect\Desktop\Notes\check-tcpconnection.ps1
Exception calling "Invoke" with "2" argument(s): "The script block cannot be invoked because it contains more than one clause. The Invoke() method can only be used on script blocks that contain a single clause."
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : PSInvalidOperationException
+ PSComputerName : SERVER001


Explanation:

A PowerShell function that is being passed via the invoke method has a limitation of only accepting 1 “clause” or 1 block. A block is a parameter of the function object. Yes, a PowerShell function is an object – similar to JavaScript and Python. The easiest way to demonstrate this is to inspect the ForEach-Object.

Get-Help ForEach-Object -Parameter *

-Begin <ScriptBlock>
Specifies a script block that runs before processing any input objects.

Required? false
Position? named
Default value None
Accept pipeline input? false
Accept wildcard characters? false


-End <ScriptBlock>
Specifies a script block that runs after processing all input objects.

Required? false
Position? named
Default value None
Accept pipeline input? false
Accept wildcard characters? false

<# ... #>

-Process <ScriptBlock[]>
Specifies the operation that is performed on each input object. Enter a script
block that describes the operation.

Required? true
Position? 1
Default value None
Accept pipeline input? false
Accept wildcard characters? false

Resolution:

Remove extra parameters inside the original function. For Example,

    function localFunc ($x, $y){
#begin{} #this is not a required block, comment it out
process{
ping $y
ping $y
}
#end{} #remove this extra clause as well
}

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Check ADFS for Duplicate Identifiers

function checkDuplicateIdf{ write-host "Checking each relying party trust for any duplicates of identifiers..." $trusts=Get-AdfsRelyingPartyTrust $allTrustNames=$trusts.Name…

How To Prevent Windows From Automatically Rebooting After Updates

# Add New Registry Key $regHive='REGISTRY::HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU' $keyname='NoAutoRebootWithLoggedOnUsers' $value=1 Set-ItemProperty -Path $regHive -Name $keyname -value $value…

Quick & Useful Snippet to Set SSL TLS Protocol of PowerShell

$requiredTls='Tls12' $availableSslProtocols=[enum]::getnames([net.securityprotocoltype]) if([Net.ServicePointManager]::SecurityProtocol -notin $requiredTls -and $requiredTls -in $availableSslProtocols){ [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::$requiredTls }