从C#以32位或64位运行PowerShell

时间:2019-06-24 15:26:32

标签: c# powershell

我构建了一个执行PowerShell脚本的32位.NET DLL。 我需要它能够交替运行64位 32位脚本。

我已经知道如何使用命令行:

C:\Windows\Sysnative\cmd /c powershell -ExecutionPolicy ByPass "& 'script.ps1' arguments"
C:\Windows\SysWOW64\cmd /c powershell -ExecutionPolicy ByPass "& 'script.ps1' arguments"

但是我需要能够与System.Management.Automation.PowerShell类或System.Management.Automation.Runspaces.Pipeline类一起使用C#接口,以便从脚本异步收集输出。

1 个答案:

答案 0 :(得分:0)

@PetSerAl的评论是解决方案。在进程外运行空间不足的情况下,我可以更改位数。

我在这里复制他的代码:

using System;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
public static class TestApplication {
    public static void Main() {
        Console.WriteLine(Environment.Is64BitProcess);
        using(PowerShellProcessInstance pspi = new PowerShellProcessInstance()) {
            string psfn = pspi.Process.StartInfo.FileName;
            psfn=psfn.ToLowerInvariant().Replace("\\syswow64\\", "\\sysnative\\");
            pspi.Process.StartInfo.FileName=psfn;
            using(Runspace r = RunspaceFactory.CreateOutOfProcessRunspace(null, pspi)) {
                r.Open();
                using(PowerShell ps = PowerShell.Create()) {
                    ps.Runspace=r;
                    ps.AddScript("[Environment]::Is64BitProcess");
                    foreach(PSObject pso in ps.Invoke()) {
                        Console.WriteLine(pso);
                    }
                }
            }
        }
    }
}