3

我有一个调用 PowerShell 的 ASP.NET MVC 4 页面。但是,我遇到了一个问题,因为我使用的模块没有签名,所以我必须启用Unrestricted策略。如何强制 PowerShell 孩子使用不受限制的策略?

我在我的脚本中启用了它,但它被忽略了。此外,当我尝试在代码中设置策略时,会引发异常。

    using (Runspace myRunSpace = RunspaceFactory.CreateRunspace())
    {
        myRunSpace.Open();

        using (PowerShell powerShell = PowerShell.Create())
        {
            powerShell.Runspace = myRunSpace;
            powerShell.AddCommand("Set-ExecutionPolicy").AddArgument("Unrestricted");
            powerShell.AddScript(script);

            objectRetVal = powerShell.Invoke();
        }
    }
4

5 回答 5

9

如果您只需要运行一个没有交互的脚本,您可以通过命令提示符设置执行策略,如下所示:

string command = "/c powershell -executionpolicy unrestricted C:\script1.ps1";
System.Diagnostics.Process.Start("cmd.exe",command);
于 2012-11-19T03:28:11.277 回答
5

对于 PowerShell 5.1 和 PowerShell 7 Core,您可以使用ExecutionPolicy 枚举来设置执行策略,如下所示:

using Microsoft.PowerShell;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
...
public class MyClass
{
     public void MyMethod() 
     {
          // Create a default initial session state and set the execution policy.
          InitialSessionState initialSessionState = InitialSessionState.CreateDefault();
          initialSessionState.ExecutionPolicy = ExecutionPolicy.Unrestricted;

          // Create a runspace and open it. This example uses C#8 simplified using statements
          using Runspace runspace = RunspaceFactory.CreateRunspace(initialSessionState);
          runspace.Open();

          // Create a PowerShell object 
          using PowerShell powerShell = PowerShell.Create(runspace);

          // Add commands, parameters, etc., etc.
          powerShell.AddCommand(<command>).AddParameter(<parameter>);

          // Invoke the PowerShell object.
          powerShell.Invoke()
     }
}
于 2020-09-02T01:47:32.480 回答
5

您必须使用参数-Scope = CurrentUser:

  powershell.AddCommand("Set-ExecutionPolicy").AddArgument("Unrestricted")
    .AddParameter("Scope","CurrentUser");
于 2019-07-06T02:00:02.030 回答
2

这与@kravits88 答案相同,但不显示 cmd:

static void runPowerShellScript(string path, string args) {
        ProcessStartInfo startInfo = new ProcessStartInfo();
        startInfo.FileName = "cmd.exe";
        startInfo.Arguments = @"/c powershell -executionpolicy unrestricted " + path + " " + args;
        startInfo.UseShellExecute = false;
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        startInfo.CreateNoWindow = true;
        Process process = new Process();
        process.StartInfo = startInfo;
        process.Start();
    }
于 2018-02-12T10:23:52.517 回答
0

我的解决方案是对我从 IIS Express 运行的模块和脚本进行自签名。我仍在开发中,发现 IIS Express 看不到您可能已在 \System32\WindowsPowerShell...\Modules 路径中安装的所有模块。我将正在使用的模块移动到另一个驱动器,并使用该位置将模块导入到我的脚本中。

感谢您的回复:-)

于 2012-11-19T16:20:47.653 回答