C#:判断当前程序是否通过管理员运行

2020-12-13 16:32

阅读:419

标签:style   blog   http   color   ar   os   sp   div   on   

原文:C#:判断当前程序是否通过管理员运行

public bool IsAdministrator()
{
WindowsIdentity current = WindowsIdentity.GetCurrent();
WindowsPrincipal windowsPrincipal = new WindowsPrincipal(current);
return windowsPrincipal.IsInRole(WindowsBuiltInRole.Administrator);
}

 

 

 

 

转载声明:本文转载至http://www.zhoumy.cn/?p=9

C#:判断当前程序是否通过管理员运行

标签:style   blog   http   color   ar   os   sp   div   on   

原文地址:http://www.cnblogs.com/lonelyxmas/p/4084988.html


评论


亲,登录后才可以留言!