0
我在AD中擁有通用通訊組。在Exchange中,我將該組設置爲公開,以便任何用戶都可以在組中添加或刪除自己。AD通訊組添加用戶UnathorizedAccessException
在C#我有以下代碼:
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "Domain.com");
GroupPrincipal group = GroupPrincipal.FindByIdentity(ctx, groupName);
UserPrincipal userP = UserPrincipal.FindByIdentity(ctx, User.Identity.Name);
group.Members.Add(userP);
group.Save();
的group.Save();
導致UnathorizedAccessException
。
我必須更改哪些設置以允許任何用戶執行此操作?