验证管理员权限(C#)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证管理员权限(C#)相关的知识,希望对你有一定的参考价值。
AppDomain.CurrentDomain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal); WindowsPrincipal principal = (WindowsPrincipal)Thread.CurrentPrincipal; WindowsIdentity identity = (WindowsIdentity)principal.Identity; FastPrincipal prin = new FastPrincipal(identity); isAdmin = prin.IsInRole(WindowsBuiltInRole.Administrator);
以上是关于验证管理员权限(C#)的主要内容,如果未能解决你的问题,请参考以下文章
c#我想通过一个按钮制作需要管理员的代码,并且没有权限打开应用程序,我该怎么做?