C# を使用して PowerShell スクリプトを実行したいのですが、管理者権限が必要です。これは私のコードです(ここで入手しました):
using (new Impersonator("user", "domain", "password"))
{
// create Powershell runspace
Runspace runspace = RunspaceFactory.CreateRunspace();
// open it
runspace.Open();
// create a pipeline and feed it the script text
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(scriptText);
// add parameters if any
foreach (var parameter in parameters)
{
pipeline.Commands[0].Parameters.Add(parameter.Key, parameter.Value);
}
// add an extra command to transform the script
// output objects into nicely formatted strings
// remove this line to get the actual objects
// that the script returns. For example, the script
// "Get-Process" returns a collection
// of System.Diagnostics.Process instances.
pipeline.Commands.Add("Out-String");
// execute the script
Collection<PSObject> results = pipeline.Invoke();
// close the runspace
runspace.Close();
// convert the script result into a single string
StringBuilder stringBuilder = new StringBuilder();
foreach (PSObject obj in results)
{
stringBuilder.AppendLine(obj.ToString());
}
return stringBuilder.ToString();
}
とにかく、これは私のマシンでは動作しません。たとえば、スクリプト テキストが " " の場合、" "Set-ExecutionPolicy Unrestricted
を取得します。Access to the registry key 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell' is denied.
私の場合、Get-VM
コマンドを介して仮想マシンのリストを取得できません。Get-VM
(管理者権限で実行した場合にのみ結果が返されることがわかりました。)
私は何か間違ったことをしていますか?この問題の別の解決策はありますか?