WCF RESTサービスから実行しようとしているPowerShellスクリプトがあります。System.Management.Automation
およびSystem.Management.Automation.Runspaces
アセンブリを使用しています。
C#コードは次のようになります。
Command command = new Command(path);
command.Parameters.Add(param);
RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();
using (Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration))
{
runspace.Open();
... other code
}
このエラーは、openステートメントを実行しようとするとここで発生します。
動的操作は、同種のAppDomainでのみ実行できます。
私は見てみましたが、何も機能しませんでした。この行をweb.configに追加しようとしましたが、何もしませんでした。
考えはありますか?