您定义$stepx
为变量,这与将值传递给脚本的$stepx
参数不同。
该变量独立于参数而存在,并且由于您没有将参数传递给脚本,因此其参数绑定到其默认值。
因此,您需要将参数(参数值)传递给脚本的参数:
有点令人困惑的是,一个脚本文件Command
是通过一个实例调用的,你通过它的.Parameters
集合向它传递参数(参数值)。
相比之下,.AddScript()
用于将字符串添加为内存中脚本的内容(存储在字符串中),即PowerShell 源代码片段。
您可以使用任何一种技术来调用带有参数的脚本文件,但如果您想使用强类型参数(其值不能从它们的字符串表示中明确推断出来),请使用Command
基于 - 的方法(.AddScript()
替代方法在注释中提到):
using (Runspace space = RunspaceFactory.CreateRunspace())
{
space.Open();
Pipeline pipeline = space.CreatePipeline();
// Create a Command instance that runs the script and
// attach a parameter (value) to it.
// Note that since "test.ps1" is referenced without a path, it must
// be located in a dir. listed in $env:PATH
var cmd = new Command("test.ps1");
cmd.Parameters.Add("stepx", "This is a test");
// Add the command to the pipeline.
pipeline.Commands.Add(cmd);
// Note: Alternatively, you could have constructed the script-file invocation
// as a string containing a piece of PowerShell code as follows:
// pipeline.Commands.AddScript("test.ps1 -stepx 'This is a test'");
var output = pipeline.Invoke(); // output[0] == "This is a test"
}