157

我正在尝试使用 InstallUtil.exe 安装服务,但通过Process.Start. 这是代码:

ProcessStartInfo startInfo = new ProcessStartInfo (m_strInstallUtil, strExePath);
System.Diagnostics.Process.Start (startInfo);

wherem_strInstallUtil是“InstallUtil.exe”的完全限定路径和 exe,并且strExePath是我的服务的完全限定路径/名称。

从提升的命令提示符运行命令行语法有效;从我的应用程序运行(使用上面的代码)没有。我假设我正在处理一些进程提升问题,那么我将如何在提升状态下运行我的进程?我需要看看ShellExecute这个吗?

这一切都在 Windows Vista 上。我在提升到管理员权限的 VS2008 调试器中运行该进程。

我也试过设置startInfo.Verb = "runas";,但似乎没有解决问题。

4

6 回答 6

184

您可以通过将 startInfo 对象的 Verb 属性设置为“runas”来指示应以提升的权限启动新进程,如下所示:

startInfo.Verb = "runas";

这将导致 Windows 的行为就像进程已从资源管理器中使用“以管理员身份运行”菜单命令启动一样。

这确实意味着将出现 UAC 提示并需要用户确认:如果这是不希望的(例如因为它会发生在一个冗长的进程中间),您需要运行整个主机进程通过Create and Embed an Application Manifest (UAC)提升权限以要求“highestAvailable”执行级别:这将导致 UAC 提示在您的应用启动后立即出现,并导致所有子进程以提升的权限运行而无需额外提示.

编辑:我看到你刚刚编辑了你的问题,说明“runas”对你不起作用。这真的很奇怪,因为它应该(在几个生产应用程序中对我来说也是如此)。但是,通过嵌入清单来要求父进程以提升的权限运行肯定可以工作。

于 2008-09-25T13:57:54.073 回答
53

此代码将上述所有内容放在一起并使用管理员权限重新启动当前 wpf 应用程序:

if (IsAdministrator() == false)
{
    // Restart program and run as admin
    var exeName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
    ProcessStartInfo startInfo = new ProcessStartInfo(exeName);
    startInfo.Verb = "runas";
    System.Diagnostics.Process.Start(startInfo);
    Application.Current.Shutdown();
    return;
}

private static bool IsAdministrator()
{
    WindowsIdentity identity = WindowsIdentity.GetCurrent();
    WindowsPrincipal principal = new WindowsPrincipal(identity);
    return principal.IsInRole(WindowsBuiltInRole.Administrator);
}


// To run as admin, alter exe manifest file after building.
// Or create shortcut with "as admin" checked.
// Or ShellExecute(C# Process.Start) can elevate - use verb "runas".
// Or an elevate vbs script can launch programs as admin.
// (does not work: "runas /user:admin" from cmd-line prompts for admin pass)

更新:首选应用清单方式:

在 Visual Studio 中右键单击项目,添加新的应用程序清单文件,更改文件,以便您设置 requireAdministrator,如上所示。

原方式的一个问题:如果将重启代码放在app.xaml.cs OnStartup中,即使调用了Shutdown,它仍然可能会短暂启动主窗口。如果 app.xaml.cs init 没有运行并且在某些竞争条件下它会这样做,我的主窗口就会爆炸。

于 2012-06-05T22:12:08.690 回答
22

根据文章Chris Corio:教您的应用程序使用 Windows Vista 用户帐户控制很好地运行,MSDN 杂志,2007 年 1 月,仅ShellExecute检查嵌入式清单并在需要时提示用户提升,而CreateProcess其他 API 则不会。希望能帮助到你。

另请参阅:与 .chm 相同的文章

于 2008-10-23T23:56:19.950 回答
8
[PrincipalPermission(SecurityAction.Demand, Role = @"BUILTIN\Administrators")]

这将在没有 UAC 的情况下完成 - 无需启动新进程。如果正在运行的用户是 Admin 组的成员,就我而言。

于 2012-01-12T08:43:21.440 回答
1

您应该使用模拟来提升状态。

WindowsIdentity identity = new WindowsIdentity(accessToken);
WindowsImpersonationContext context = identity.Impersonate();

完成后不要忘记撤消模拟上下文。

于 2008-09-25T13:53:55.983 回答
1

我知道这是一个非常古老的帖子,但我只是想分享我的解决方案:

System.Diagnostics.ProcessStartInfo StartInfo = new System.Diagnostics.ProcessStartInfo
{
    UseShellExecute = true, //<- for elevation
    Verb = "runas",  //<- for elevation
    WorkingDirectory = Environment.CurrentDirectory,
    FileName = "EDHM_UI_Patcher.exe",
    Arguments = @"\D -FF"
};
System.Diagnostics.Process p = System.Diagnostics.Process.Start(StartInfo);

注意:如果 VisualStudio 已经在运行 Elevated,则不会显示 UAC 对话框,要对其进行测试,请运行 bin 文件夹中的 exe。

于 2022-01-05T20:56:39.283 回答