参考代码(来源):
private bool IsActive(DirectoryEntry de) { if (de.NativeGuid == null) return false; int flags = (int)de.Properties["userAccountControl"].Value; if (!Convert.ToBoolean(flags & 0x0002)) return true; else return false; return false; }
嗯,模拟了管理员权限之后就可以了!谢谢你