C# 以其他程序的管理员权限启动程序

C# Start Program with ADMIN rights from other program

我编写了一个通知程序,它与 WebSocket 上的 windows 服务进行通信。此通知程序没有管理员权限,但单击按钮会启动另一个程序来启动和停止服务。这个程序应该 运行 具有管理员权限,它在一段时间内工作得很好,但不知何故不再有效。

那是我的代码片段:

        using (var process = new Process())
        {
            process.StartInfo.UseShellExecute = false;
            process.StartInfo.FileName = $".\ServiceControl.exe";
            process.StartInfo.CreateNoWindow = true;
            process.StartInfo.Arguments = $"-s {ServiceName} -start";
            process.StartInfo.Verb = "runas";
            process.Start();
        }

例外情况如下:

System.ComponentModel.Win32Exception: "Der angeforderte Vorgang erfordert erhöhte Rechte"

当时它显示 window 我可以接受管理员权限但现在不能了。

尝试添加这一行

process.StartInfo.UseShellExecute = true;

using (var process = new Process())
{
    process.StartInfo.UseShellExecute = true;
    process.StartInfo.FileName = $".\ServiceControl.exe";
    process.StartInfo.CreateNoWindow = true;
    process.StartInfo.Arguments = $"-s {ServiceName} -start";
    process.StartInfo.Verb = "runas";
    process.Start();
}