摘要:
我有一个应用程序需要检测是否正在升高的特权。我现在代码建立这样的:
函数功能 : 是否是管理员
private static bool _isAdministrator()
{
WindowsIdentity identity = WindowsIdentity.GetCurrent();
WindowsPrincipal principal = new WindowsPrincipal(identity);
return principal.IsInRole (WindowsBuiltInRole.Administrator);
}
类主要功能:
1:UAC状态查询
2:用户状态查询
public static class UacHelper
{
private const strin 阅读全文