Powershell argument passing to function seemingly not working

soandos picture soandos · Feb 23, 2012 · Viewed 27.3k times · Source

I sense that I am doing something silly, but here is the issue:

Function getPropertyOfFile($a, $b, $c)
{
    $a.GetDetailsOf($b, $c)
}

If I pass $a, $b, $c variables that are appropriate to the function, it fails saying that

"Method invocation failed because [System.Object[]] doesn't contain a method named 'GetDetailsOf'."

However, if I directly replace $a, $b, $c with the arguments that I was passing, and then try to run that, it works fine.

What the heck is going on?

Note: I am using powershell ISE, and am inputting the function to powershell by copy/pasting it into the console. I have also been working under the assumption that if I input a new function with the same name, it would overwrite. Is there a better way to just have PS read from the .ps1?

Edit: I am trying to wrap the answer to this question into functions.

Edit 2:

Function getPropertyOfFile $a $b $c
{
    $a.GetDetailsOf($b, $c)
}

Gives an Missing function body in function declaration. At line:1 char:28 error.

Answer

Joey picture Joey · Feb 23, 2012

Functions in PowerShell are called similar to cmdlets, so you don't need to separate arguments with commas.

Your invocation likely looks like this:

getPropertyOfFile($foo, $bar, $baz)

which results in $a having the value $foo, $bar, $baz (an array) while $b and $c are $null.

You need to call it like this:

getPropertyOfFile $foo $bar $baz

which, as noted, is identical to how you call cmdlets. You could even do

getPropertyOfFile -a $foo -c $baz -b $bar

at which point you probably notice that your function arguments aren't named very well ;-)

EDIT: As noted before your declaration of the function is fine. The problem is in the code you didn't post but is easily inferrable for people with PowerShell experience. Namely, the invocation of your function.