如何强制 .NET 程序以 管理员模式 运行 ?

Posted dotNET跨平台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何强制 .NET 程序以 管理员模式 运行 ?相关的知识,希望对你有一定的参考价值。

咨询区

  • Gold

我有一个 winform 程序部署客户的PC机上,请问我如何通过编码的形式强制让程序以管理员模式运行?

回答区

  • Gaspa79

如果你用的是 Visual Studio 2019,可以通过工具去配置,右键 项目 -> 新建项 -> Application Manifest File

manifest 文件中,找到 requestedExecutionLevel 节点,它的 level 可以设置为如下三种。

<requestedExecutionLevel  level="asInvoker" uiAccess="false" />
<requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel  level="highestAvailable" uiAccess="false" />

如果要用管理员模式的话,使用 requireAdministrator 即可。

<requestedExecutionLevel  level="requireAdministrator" uiAccess="false" />
  • Gaspa79

如何因为某些原因你必须要通过 纯代码 解决的化,可以参考我的实现代码。

using System;
using System.Diagnostics;
using System.Reflection;
using System.Security.Principal;

public static class AdminRelauncher
{
    public static void RelaunchIfNotAdmin()
    {
        if (!RunningAsAdmin())
        {
            Console.WriteLine("Running as admin required!");
            ProcessStartInfo proc = new ProcessStartInfo();
            proc.UseShellExecute = true;
            proc.WorkingDirectory = Environment.CurrentDirectory;
            proc.FileName = Assembly.GetEntryAssembly().CodeBase;
            proc.Verb = "runas";
            try
            {
                Process.Start(proc);
                Environment.Exit(0);
            }
            catch (Exception ex)
            {
                Console.WriteLine("This program must be run as an administrator! \\n\\n" + ex.ToString());
                Environment.Exit(0);
            }
        }
    }

    private static bool RunningAsAdmin() 
    {
        WindowsIdentity id = WindowsIdentity.GetCurrent();
        WindowsPrincipal principal = new WindowsPrincipal(id);

        return principal.IsInRole(WindowsBuiltInRole.Administrator);             
    }
}

点评区

要想让程序以管理员模式运行,这篇就学习了两种方式,当在程序中需要操控一些系统资源或者第三方工具时,通常就需要以管理员模式的刚性需求啦。

以上是关于如何强制 .NET 程序以 管理员模式 运行 ?的主要内容,如果未能解决你的问题,请参考以下文章

Visual Studio 安装项目:如何强制卸载程序以管理员模式运行?

如何以编程方式检测我的应用程序是不是在 ASP.NET 页面内以 IIS 7.0 集成模式运行

如何强制 MSBuild 编译为 32 位模式?

win10提示管理员已阻止你运行此应用,如何强制运行

如何使用“以管理员身份运行”要求自动检查我的 .NET 4 控制台应用程序 [重复]

如何强制 C# .net 应用程序在 Windows 中仅运行一个实例? [复制]