I can pass one object in powershell, but when I have 2 objects, only 1 is passed, the other is null.
psuedo-code:
function do-something($param1, $param2) { ... } do-something($a, $b) Do I need to do something special to get both args passed to do-something? What I have resorted to is using globals which I think will lead to other issues.