如何通过New-Variable将数组变量注入PowerShell Runspace

时间:2012-09-11 22:59:52

标签: c# powershell

假设我已经通过

创建并打开了运行空间
            var rs = RunspaceFactory.CreateRunspace();
            rs.Open();

让我们进一步假设我想通过使用New-Variable cmdlet将变量添加到作为数组输入的运行空间中,如下所示:

            // create a pipeline to add the variable into the runspace
            var pipeline = PowerShell.Create();
            // create a command object, add commands and parameters to it...
            var cmd = new PSCommand();
            cmd.AddCommand("New-Variable");
            cmd.AddParameter("Name", "foo");
            cmd.AddParameter("Value", "@()");
            // associate the command with the pipeline and runspace, and then invoke
            pipeline.Commands = cmd;
            pipeline.Runspace = rs;
            pipeline.Invoke();

代码有效,我没有错误,但变量'foo'不是作为数组类型创建的。我在“@()”上尝试了很多不同的变体,但到目前为止它们都没有被淘汰。最后,我认为问题归结为如何将Value参数正确格式化为New-Variable,以便'foo'将被解释为空的PowerShell数组类型。

谢谢,

马特

3 个答案:

答案 0 :(得分:3)

仅供参考,你可以直接在C#中这样做:

pipeline.Runspace.SessionStateProxy.PSVariable.Set("foo", new object[0]);

答案 1 :(得分:0)

救了我的回应是:

如果您是从文本中完成所有操作,则可以查看AddScript方法。例如,var cmd = new PSCommand().AddScript("$myVar = @()");将生成一个名为$myVar的新变量。

C#代码示例:

foreach (Collaborator collab in collabs)
                {
                    counter ++;
                    arrayUsers.Append("@(\"" + collab.mail + "\", \"" + collab.url + "\")");
                    if (counter < numbercollabs)
                        arrayUsers.Append(",");
                }
                string arrayUsersPowerShell =  arrayUsers.ToString();
and then :

using (PowerShell powerShellInstance = PowerShell.Create())
                {
 powerShellInstance.AddScript("$d = get-date; " +
                        "$arrayUsers = @(" + arrayUsersPowerShell + "); " +
                        "$d | Out-String; $arrayUsers[0][1]");
...
Collection<PSObject> PSOutput = powerShellInstance.Invoke();
...
}

所以我们可以正确构造数组

答案 2 :(得分:-1)

PSCommand.AddParameter为参数名称设置字符串,为参数值设置对象。请参阅文档here

你应该放一个“真正的”空数组,而不是代表powershell脚本等效的字符串。

cmd.AddParameter("Value", new object[0]);