我有一个脚本,它读取一个配置文件,该文件产生一组名称值对,我想将它们作为参数传递给第二个 PowerShell 脚本中的函数。
我不知道在设计时会在这个配置文件中放置什么参数,所以就在我需要调用第二个 PowerShell 脚本的时候,我基本上只有一个变量具有第二个脚本的路径,还有一个变量变量,它是要传递给路径变量中标识的脚本的参数数组。
因此,包含第二个脚本 ( $scriptPath
) 路径的变量可能具有如下值:
"c:\the\path\to\the\second\script.ps1"
包含参数 ( $argumentList
) 的变量可能类似于:
-ConfigFilename "doohickey.txt" -RootDirectory "c:\some\kind\of\path" -Max 11
如何使用 $argumentList 中的所有参数从这种事态中执行 script.ps1?
我希望从调用第一个脚本的控制台可以看到来自第二个脚本的任何写入主机命令。
我尝试过点源、Invoke-Command、Invoke-Expression 和 Start-Job,但我还没有找到不会产生错误的方法。
例如,我认为最简单的第一条路线是尝试 Start-Job,如下所示:
Start-Job -FilePath $scriptPath -ArgumentList $argumentList
...但这失败并出现此错误:
System.Management.Automation.ValidationMetadataException:
Attribute cannot be added because it would cause the variable
ConfigFilename with value -ConfigFilename to become invalid.
...在这种情况下,“ConfigFilename”是第二个脚本定义的参数列表中的第一个参数,我的调用显然是试图将其值设置为“-ConfigFilename”,这显然是为了通过名称来识别参数,不设置它的值。
我错过了什么?
编辑:
好的,这是一个被调用脚本的模型,在一个名为 invokee.ps1 的文件中
Param(
[parameter(Mandatory=$true)]
[alias("rc")]
[string]
[ValidateScript( {Test-Path $_ -PathType Leaf} )]
$ConfigurationFilename,
[alias("e")]
[switch]
$Evaluate,
[array]
[Parameter(ValueFromRemainingArguments=$true)]
$remaining)
function sayHelloWorld()
{
Write-Host "Hello, everybody, the config file is <$ConfigurationFilename>."
if ($ExitOnErrors)
{
Write-Host "I should mention that I was told to evaluate things."
}
Write-Host "I currently live here: $gScriptDirectory"
Write-Host "My remaining arguments are: $remaining"
Set-Content .\hello.world.txt "It worked"
}
$gScriptPath = $MyInvocation.MyCommand.Path
$gScriptDirectory = (Split-Path $gScriptPath -Parent)
sayHelloWorld
...这是调用脚本的模型,在一个名为 invoker.ps1 的文件中:
function pokeTheInvokee()
{
$scriptPath = (Join-Path -Path "." -ChildPath "invokee.ps1")
$scriptPath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($scriptPath)
$configPath = (Join-Path -Path "." -ChildPath "invoker.ps1")
$configPath = $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath($configPath)
$argumentList = @()
$argumentList += ("-ConfigurationFilename", "`"$configPath`"")
$argumentList += , "-Evaluate"
Write-Host "Attempting to invoke-expression with: `"$scriptPath`" $argumentList"
Invoke-Expression "`"$scriptPath`" $argumentList"
Invoke-Expression ".\invokee.ps1 -ConfigurationFilename `".\invoker.ps1`" -Evaluate
Write-Host "Invokee invoked."
}
pokeTheInvokee
当我运行invoker.ps1 时,这是我当前在第一次调用Invoke-Expression 时遇到的错误:
Invoke-Expression : You must provide a value expression on
the right-hand side of the '-' operator.
第二个调用工作得很好,但一个显着的区别是第一个版本使用的参数的路径中有空格,而第二个没有。我是否错误地处理了这些路径中存在的空格?