PowerShell - 将扩展参数传递给Start-Job cmdlet

时间:2014-07-29 15:37:11

标签: arrays powershell start-job

我们正在尝试使用变量创建一个数组,然后将此数组传递给一个脚本,该脚本应由Start-Job运行。但实际上它失败了,我们无法找到原因。也许有人可以提供帮助!?

$arguments= @()
$arguments+= ("-Name", '$config.Name')
$arguments+= ("-Account", '$config.Account')
$arguments+= ("-Location", '$config.Location')

#do some nasty things with $config

Start-Job -ScriptBlock ([scriptblock]::create("& .'$ScriptPath' [string]$arguments")) -Name "Test"

失败了

Cannot validate argument on parameter 'Name'. The argument is null or empty. Provide an argument that is not null or empty, and then try the command again.
    + CategoryInfo          : InvalidData: (:) [Select-AzureSubscription], ParameterBindingValidationException
    + FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.WindowsAzure.Commands.Profile.SelectAzureSubscriptionCommand
    + PSComputerName        : localhost

即使$ config.name设置正确。

有什么想法吗?

提前谢谢!

2 个答案:

答案 0 :(得分:2)

单引号是文字字符串符号,您将“-Name”参数设置为字符串$config.Name而不是Value of $config.Name。要使用该值,请使用以下命令:

$arguments= @()
$arguments+= ("-Name", $config.Name)
$arguments+= ("-Account", $config.Account)
$arguments+= ("-Location", $config.Location)

答案 1 :(得分:2)

我使用此方法传递命名参数:

$arguments = 
@{
   Name     = $config.Name
   Account  = $config.Account
   Location = $config.Location
}

#do some nasty things with $config

Start-Job -ScriptBlock ([scriptblock]::create("&'$ScriptPath'  $(&{$args}@arguments)")) -Name "Test"

如果您在本地运行脚本,它允许您使用与脚本相同的参数哈希值。

这段代码:

$(&{$args}@arguments)
嵌入在可扩展字符串中的

将为参数创建参数:值对:

$config = @{Name='configName';Account='confgAccount';Location='configLocation'}
$arguments = 
@{
   Name     = $config.Name
   Account  = $config.Account
   Location = $config.Location
}

"$(&{$args}@arguments)"

-Account: confgAccount -Name: configName -Location: configLocation