拼接时使用哈希表作为参数



我正在尝试使用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".

看起来它将我想作为哈希表传入的值视为字符串。对于我的生活,我不知道如何解决这个问题。谁能帮忙?

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

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:Temptestscript.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 属性,这就是我必须排除它的原因。

而不是

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

这行得通吗?

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

即将板片移到$()

相关内容

  • 没有找到相关文章

最新更新