그룹에서 멤버 제거
그룹의 member 속성에서 멤버의 고유 이름을 제거하여 그룹에서 멤버를 제거할 수 있습니다. 고유 이름을 제거하려면 제거할 멤버의 고유 이름을 사용하여 Remove 메서드를 호출합니다. member 속성에 대한 자세한 내용은 MSDN Library(https://go.microsoft.com/fwlink/?LinkID=27252)의 Active Directory Schema SDK 설명서에서 Member 항목을 참조하십시오.
다음 예제에서는 그룹에서 멤버를 제거하는 방법을 보여 줍니다. 우선 제거할 사용자를 찾은 다음 Remove 메서드를 호출하여 이 작업을 완료합니다.
// Bind to the group.
DirectoryEntry group = new DirectoryEntry(groupDN);
// Remove the user from the group.
group.Properties["member"].Remove(userDN);
// Commit the changes to the directory.
group.CommitChanges();
참고 항목
참조
PropertyValueCollection
System.DirectoryServices
개념
Send comments about this topic to Microsoft.
Copyright © 2007 by Microsoft Corporation. All rights reserved.