我有一个脚本,它读取一个配置文件,该文件生成一组名称值对,我希望将这些名称值对作为参数传递给第二个 PowerShell 脚本中的函数。
我不知道在设计时这个配置文件中会放置什么参数,所以就在我需要调用第二个 PowerShell 脚本的时候,我基本上只有一个变量有第二个脚本的路径,第二个变量是一个参数数组,传递给在 path 变量中标识的脚本。
因此,包含第二个脚本路径($scriptPath
)的变量可能具有如下值:
"c:\the\path\to\the\second\script.ps1"
包含参数($argumentList
)的变量可能类似于:
-ConfigFilename "doohickey.txt" -RootDirectory "c:\some\kind\of\path" -Max 11
如何使用 $argumentList 中的所有参数从这种状态执行 script.ps1?
我希望第二个脚本中的任何 write-host 命令对于调用第一个脚本的控制台都是可见的。
我已经尝试过点源、调用命令、调用表达式和启动作业,但是我还没有找到一种不会产生错误的方法。
例如,我认为最简单的第一条路线是尝试 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”,这显然是为了通过名称来识别参数,而不是设置其值。
我错过了什么?
编辑:
好的,这里有一个待调用脚本的模型,在一个名为 invowkee.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.
第二个调用工作得很好,但一个重要的区别是,第一个版本使用的参数的路径中有空格,而第二个版本没有。我是否错误地处理了这些路径中存在的空间?