我运行这段代码来从ASP执行PowerShell代码。网络应用程序:

System.Management.Automation.Runspaces.Runspace runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace();
runspace.Open();
System.Management.Automation.Runspaces.Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(@"\\servername\path");

pipeline.Commands.Add("Out-String");

Collection<PSObject> results = pipeline.Invoke();

runspace.Close();

但是我得到一个错误:

无法加载.ps1,因为在上禁用了脚本的执行 这个系统。详情请参见“get-help about_signing”。

同样的代码可以在命令提示符或windows (windows窗体)应用程序中正常运行。


当前回答

你需要执行Set-ExecutionPolicy:

Set-ExecutionPolicy Unrestricted <-- Will allow unsigned PowerShell scripts to run.

Set-ExecutionPolicy Restricted <-- Will not allow unsigned PowerShell scripts to run.

Set-ExecutionPolicy RemoteSigned <-- Will allow only remotely signed PowerShell scripts to run.

其他回答

由于执行策略,您的脚本被阻止执行。

您需要以管理员身份运行PowerShell,并将客户端PC上的PowerShell设置为“无限制”。你可以通过调用Invoke来实现:

Set-ExecutionPolicy Unrestricted

我有一个类似的问题,并注意到Windows Server 2012上的默认cmd正在运行x64。

在Windows 7、Windows 8、Windows Server 2008 R2或Windows Server 2012操作系统下,以Administrator身份执行以下命令:

x86

打开C:\Windows\SysWOW64\cmd.exe 执行命令:powershell Set-ExecutionPolicy remotessigned

x64

打开C:\Windows\system32\cmd.exe 执行powershell Set-ExecutionPolicy remotessigned命令

您可以检查模式使用

在CMD中:echo %PROCESSOR_ARCHITECTURE% 在Powershell中:[Environment]::Is64BitProcess

我希望这对你有所帮助。

问题是执行策略是基于每个用户设置的。每次运行应用程序时,您都需要在应用程序中运行以下命令以使其工作:

Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned

可能有一种方法来设置ASP。NET用户,但这种方式意味着您不会开放整个系统,而只是您的应用程序。

(源)

试试这个:

Set-ExecutionPolicy -scope CurrentUser Unrestricted

你需要执行Set-ExecutionPolicy:

Set-ExecutionPolicy Unrestricted <-- Will allow unsigned PowerShell scripts to run.

Set-ExecutionPolicy Restricted <-- Will not allow unsigned PowerShell scripts to run.

Set-ExecutionPolicy RemoteSigned <-- Will allow only remotely signed PowerShell scripts to run.