「script」という文字列に次の内容で格納されているPowershellスクリプトがあります。
get-user | out-file C:\Users\user\Desktop\user.txt -append
私のC#コード:
RunspaceConfiguration runConfig = RunspaceConfiguration.Create();
PSSnapInException psEx = null;
runConfig.AddPSSnapIn("VMWare.View.Broker", out psEx);
Runspace runspace = RunspaceFactory.CreateRunspace(runConfig);
runspace.Open();
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(script);
Collection<PSObject> results = new Collection<PSObject>();
results = pipeline.Invoke();
runspace.Close();
コードをデバッグすると、次の例外が発生します。
No snap-ins have been registered for Windows Powershell Version 2
スクリプトを手動で実行してスナップインを追加すると、正常に機能します