C#WPF以管理员身份运行

本文介绍如何在C# WPF应用中检测并确保程序以管理员身份运行。通过`WindowsIdentity`和`WindowsPrincipal`检查当前权限,若非管理员则使用`ProcessStartInfo`以'runas'verb重新启动程序,提示用户手动设置管理员权限。
摘要由CSDN通过智能技术生成

         App.xaml 中订阅事件 Startup += CheckAdministrator

 

        /// <summary>
        /// 检测是否以管理员身份运行
        /// </summary>
        private void CheckAdministrator()
        {
            var wi = System.Security.Principal.WindowsIdentity.GetCurrent();
            var wp = new System.Security.Principal.WindowsPrincipal(wi);

            bool runAsAdmin = wp.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator);

            if (!runAsAdmin)
            {
                var processInfo = new ProcessStartInfo(System.Reflection.Assembly.GetExecutingAssembly().CodeBase);
                processInfo.UseShellExecute = true;
                processInfo.Verb = "runas";
                try
                {
                    Process.Start(processInfo);
                }
                catch (Exception ex)
                {
                    MessageBox.Show("程序自动以管理员身份运行出错,请手动设置以管理员身份运行程序" + ex);
                    throw;
                }
                Environment.Exit(0);
            }
        }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值