我想从其他脚本中启动一个script1.ps1,其参数存储在变量中。
$para = "-Name name -GUI -desc ""this is the description"" -dryrun"
. .\script1.ps1 $para
我在script1.ps1中获得的args看起来像:
args [0]: - 名称-GUI -desc“这是描述”-dryrun
所以这不是我想要的。
有谁知道如何解决这个问题?
thx lepi
PS:不确定变量将包含多少个参数以及它们将如何排名。
答案 0 :(得分:7)
您需要使用 splatting operator 。请查看powershell team blog或此处stackoverflow.com。
以下是一个例子:
@'
param(
[string]$Name,
[string]$Street,
[string]$FavouriteColor
)
write-host name $name
write-host Street $Street
write-host FavouriteColor $FavouriteColor
'@ | Set-Content splatting.ps1
# you may pass an array (parameters are bound by position)
$x = 'my name','Corner'
.\splatting.ps1 @x
# or hashtable, basically the same as .\splatting -favouritecolor blue -name 'my name'
$x = @{FavouriteColor='blue'
Name='my name'
}
.\splatting.ps1 @x
在你的情况下,你需要这样称呼它:
$para = @{Name='name'; GUI=$true; desc='this is the description'; dryrun=$true}
. .\script1.ps1 @para
答案 1 :(得分:5)
使用Invoke-Expression
是另一种选择:
$para = '-Name name -GUI -desc "this is the description" -dryrun'
Invoke-Expression -Command ".\script1.ps1 $para"