3

我正在尝试使用 Start-Job 启动一个新的 Powershell 脚本。新脚本有几个参数(一些是可选的,一些不是),所以我想制作一个哈希表并将它们分解。然而,其中一个参数本身就是一个哈希表。我正在尝试这样开始工作:

$MyStringParam = "string1"
$MyHashParam = @{}
$MyHashParam.Add("Key1", "hashvalue1")

$arguments = @{MyStringParam=$MyStringParam;MyHashParam=$MyHashParam}

Start-Job -Name "MyJob" -ScriptBlock ([scriptblock]::create("C:\myscript.ps1 $(&{$args} @arguments)"))

于是我在新工作中得到这个错误:

Cannot process argument transformation on parameter 'arguments'. 
Cannot convert the "System.Collections.Hashtable" value of 
type "System.String" to type "System.Collections.Hashtable".

看起来它正在将我想要作为哈希表传递的值作为字符串处理。对于我的生活,我无法弄清楚如何解决这个问题。任何人都可以帮忙吗?

4

2 回答 2

1

而不是

[scriptblock]::create("C:\myscript.ps1 $(&{$args} @arguments)")

这行得通吗?

[scriptblock]::create("C:\myscript.ps1 $(&{$args}) @arguments")

即将 splat 移到$()

于 2015-04-29T19:56:10.750 回答
1

您需要将变量作为脚本块的参数传递到脚本块中,然后将该参数传递给您的第二个脚本。像这样的东西应该适合你:

Start-Job -Name "MyJob" -ScriptBlock {Param($PassedArgs);& "C:\myscript.ps1" @PassedArgs} -ArgumentList $Arguments

我创建了以下脚本并将其保存到 C:\Temp\TestScript.ps1

Param(
    [String]$InString,
    [HashTable]$InHash
)
ForEach($Key in $InHash.keys){
    [pscustomobject]@{'String'=$InString;'HashKey'=$Key;'HashValue'=$InHash[$Key]}
}

然后我运行了以下命令:

$MyString = "Hello World"
$MyHash = @{}
$MyHash.Add("Green","Apple")
$MyHash.Add("Yellow","Banana")
$MyHash.Add("Purple","Grapes")

$Arguments = @{'InString'=$MyString;'InHash'=$MyHash}

$MyJob = Start-Job -scriptblock {Param($MyArgs);& "C:\Temp\testscript.ps1" @MyArgs} -Name "MyJob" -ArgumentList $Arguments | Wait-Job | Receive-Job
Remove-Job -Name 'MyJob'
$MyJob | Select * -ExcludeProperty RunspaceId | Format-Table

它产生了预期的结果:

String                               HashKey                              HashValue                          
------                               -------                              ---------                          
Hello World                          Yellow                               Banana                             
Hello World                          Green                                Apple                              
Hello World                          Purple                               Grapes 

运行作业的过程将为返回的任何对象添加一个 RunspaceId 属性,这就是我必须排除它的原因。

于 2015-04-30T03:32:34.337 回答