gpt4 book ai didi

c# - 以管理员身份运行新进程并读取标准输出

转载 作者:太空狗 更新时间:2023-10-29 19:42:50 24 4
gpt4 key购买 nike

我想允许用户从我的非管理员程序中以管理员身份运行命令行实用程序,并让我的程序获取输出。该实用程序是第三方的,但随我的程序一起分发。

我可以redirect the output of a program我可以 run a program as administrator但我不能同时做这两件事。

目前我唯一可以开始工作的是使用 cmd.exe 将输出重定向到一个文件,例如:

using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
using System.Reflection;

string appDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
string utilityPath = Path.Combine(appDirectory, "tools", "utility.exe");
string tempFile = Path.GetTempFileName();

Process p = new Process();
// hide the command window
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName = "cmd.exe";
// run the tool, redirect the output to the temp file and then close.
p.StartInfo.Arguments = " /C \"\"" + utilityPath + "\" > \"" + tempFile + "\"\"";
p.StartInfo.Verb = "runas"; // run as administrator
p.Start();
p.WaitForExit();

// get the output, delete the file and show the output to the user
string output = File.ReadAllText(tempFile);
File.Delete(tempFile);
MessageBox.Show(output);

这有两个问题:1) 它使用一个临时文件和 2) UAC 用于 cmd.exe 而不是 utility.exe。一定有更好的方法来做到这一点?

最佳答案

不要通过新的 cmd 执行,而是尝试直接执行该实用程序。并且不是重定向到文件,而是重定向标准输出以从您的程序中读取它。为了以管理员身份运行,您需要使用管理员用户名和密码(取自 here )。您需要将方法设置为 unsafe:

unsafe public static void Main(string[] args){
Process p = new Process();
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
// set admin user and password
p.StartInfo.UserName = "adminusername";
char[] chArray = "adminpassword".ToCharArray();
System.Security.SecureString str;
fixed (char* chRef = chArray) {
str = new System.Security.SecureString(chRef, chArray.Length);
}
p.StartInfo.Password = str;
// run and redirect as usual
p.StartInfo.FileName = utilityPath;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
string output = p.StandardOutput.ReadToEnd();
Console.WriteLine(output);
p.WaitForExit();
}

关于c# - 以管理员身份运行新进程并读取标准输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15746716/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com