当前位置:主页 > 软件编程 > .NET代码 >

C#判断程序是否是管理员权限运行的方法代码示例

时间:2021-02-23 15:17:04 | 栏目:.NET代码 | 点击:

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

您可能感兴趣的文章:

相关文章