2

我有以下 Powershell 脚本。

param([String]$stepx="Not Working")
echo $stepx

然后我尝试使用以下 C# 将参数传递给该脚本。

        using (Runspace space = RunspaceFactory.CreateRunspace())
        {
            space.Open();
            space.SessionStateProxy.SetVariable("stepx", "This is a test");

            Pipeline pipeline = space.CreatePipeline();
            pipeline.Commands.AddScript("test.ps1");

            var output = pipeline.Invoke(); 
        }

运行上述代码片段后,输出变量中的值“不工作”。它应该是“这是一个测试”。为什么忽略该参数?

谢谢

4

1 回答 1

1

您定义$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"
  }
于 2018-06-29T23:25:23.640 回答