誰かがpowershell関数内でパラメータとしてObject[]
を渡す方法を教えてくれるリソースを指摘できますか?これらの関数は両方ともコマンドレットであり、正しくエクスポートされていますが、私の2番目の関数では$Return
オブジェクトが表示されません。powershellはオブジェクト[]を関数に渡します
このようなものが必要ですか?これは私の関数definiton
function My-SecondFunction
{
[CmdletBinding()]
Param(
[Parameter(Mandatory=$True)]
[Object[]]$Input
)
begin {}
process
{
Write-Host "test: $Input" # does not return anything
}
end {}
}