2

我们正在尝试创建一个包含变量的数组,然后将该数组作为扩展传递给一个脚本,该脚本应由 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 设置正确。

有任何想法吗?

先感谢您!

4

2 回答 2

3

我使用这种方法来传递命名参数:

$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
于 2014-07-29T16:26:29.563 回答
2

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

$arguments= @()
$arguments+= ("-Name", $config.Name)
$arguments+= ("-Account", $config.Account)
$arguments+= ("-Location", $config.Location)
于 2014-07-29T15:43:43.827 回答