2

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(管理者権限で実行した場合にのみ結果が返されることがわかりました。)

私は何か間違ったことをしていますか?この問題の別の解決策はありますか?

4

1 に答える 1

4

これにより、PowerShell が管理者として起動されます。

var newProcessInfo = new System.Diagnostics.ProcessStartInfo();
newProcessInfo.FileName = @"C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe";
newProcessInfo.Verb = "runas";
System.Diagnostics.Process.Start(newProcessInfo);

実行するスクリプトを渡す必要がある場合は、次を使用します。

newProcessInfo.Arguments = @"C:\path\to\script.ps1";
于 2013-10-22T15:45:16.073 に答える