Invoke-Command -ComputerName Server01 -ScriptBlock {
param ($first)
Write-Output "The value of `$a is: $first"
} -ArgumentList $a
The value of $a is: @('1','2','3')
大家好,我怎样才能在远程会话中传递$ a作为数组????。
答案 0 :(得分:1)
一种方式:
Invoke-command -ScriptBlock {param($first) Write-output $first} -argumentlist @(,(1,2,3))
1
2
3