如何使用管理员权限启动进程

时间:2012-07-11 10:52:08

标签: c# process

如何使用管理员权限在c#中启动进程? 我正在使用代码,

Process p = new Process();
                    p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                    p.StartInfo.FileName = path;
                    p.StartInfo.UseShellExecute = true;
                    p.StartInfo.RedirectStandardOutput = true;
                    p.StartInfo.RedirectStandardError = true;
                    if (System.Environment.OSVersion.Version.Major >= 6)
                    {
                        p.StartInfo.Verb = "runas";
                    }

                    p.Start();

仍然没有用。请帮助我。

由于

3 个答案:

答案 0 :(得分:2)

var processInfo = new ProcessStartInfo   
{   
    FileName = "app.exe",   
    UserName = "Username",   
    Domain = "yourdomain or leave blank",   
    Password = "password",   
    UseShellExecute = false,  
};   
Process.Start(processInfo);

只需添加/调整您的需求。

答案 1 :(得分:0)

ProcessStartInfo类具有UserName&等属性。密码请尝试在Process Start方法中使用它

答案 2 :(得分:0)

如果您可以控制正在尝试运行的应用程序,则应在可执行文件上附加清单并要求提升权限。 为此,您创建一个类似于此的文件,并将其命名为与.manifest作为扩展名的应用程序相同的名称(例如yourApp.exe.manifest):

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="appName" type="win32"/>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="requireAdministrator"/>
      </requestedPrivileges>
    </security>
  </trustInfo>
    <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
        <application>
            <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
        </application>
    </compatibility>
</assembly>

然后使用Visual Studio命令提示符中的mt工具附加它