8

我有一个存储在文件中的 PowerShell 脚本。在 Windows PowerShell 中,我将脚本执行为
.\MergeDocuments.ps1 "1.docx" "2.docx" "merge.docx"

我想从 C# 调用脚本。目前我正在使用 Process.Start ,如下所示,效果很好:
Process.Start(POWERSHELL_PATH, string.Format("-File \"{0}\" {1} {2}", SCRIPT_PATH, string.Join(" ", filesToMerge), outputFilename));

我想使用Pipeline类来运行它,类似于下面的代码,但我不知道如何传递参数(请记住,我没有命名参数,我只是使用 $args)

// create Powershell runspace
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.Open();

RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runspace);
runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");

// create a pipeline and feed it the script text (AddScript method) or use the filePath (Add method)
Pipeline pipeline = runspace.CreatePipeline();
Command command = new Command(SCRIPT_PATH);
command.Parameters.Add("", ""); // I don't have named paremeters
pipeline.Commands.Add(command);

pipeline.Invoke();
runspace.Close();
4

1 回答 1

18

刚刚在另一个问题的评论中找到它

为了将参数传递给 $args 传递 null 作为参数名称,例如command.Parameters.Add(null, "some value");

该脚本被称为:
.\MergeDocuments.ps1 "1.docx" "2.docx" "merge.docx"

这是完整的代码:

class OpenXmlPowerTools
{
    static string SCRIPT_PATH = @"..\MergeDocuments.ps1";

    public static void UsingPowerShell(string[] filesToMerge, string outputFilename)
    {
        // create Powershell runspace
        Runspace runspace = RunspaceFactory.CreateRunspace();
        runspace.Open();

        RunspaceInvoke runSpaceInvoker = new RunspaceInvoke(runspace);
        runSpaceInvoker.Invoke("Set-ExecutionPolicy Unrestricted");

        // create a pipeline and feed it the script text
        Pipeline pipeline = runspace.CreatePipeline();
        Command command = new Command(SCRIPT_PATH);
        foreach (var file in filesToMerge)
        {
            command.Parameters.Add(null, file);
        }
        command.Parameters.Add(null, outputFilename);
        pipeline.Commands.Add(command);

        pipeline.Invoke();
        runspace.Close();
    }
}
于 2012-04-21T16:18:08.353 回答