다음을 통해 공유


그룹에 멤버 추가

그룹을 만들 때 멤버를 그룹에 추가해야 합니다. 이 항목에서는 그룹에 멤버를 추가하는 방법에 대해 설명합니다.

멤버의 고유 이름을 그룹의 member 특성에 추가하여 멤버를 그룹에 추가합니다. Active Directory 스키마의 member 특성에 대한 자세한 내용은 MSDN Library(https://go.microsoft.com/fwlink/?LinkID=27252)의 "Member Attribute" 항목을 참조하십시오. 이 작업은 Add 또는 AddRange 메서드를 사용하여 수행할 수 있습니다.

단일 멤버를 그룹에 추가하려면 Add 메서드를 사용하여 멤버의 고유 이름을 그룹 개체에 대한 멤버 속성에 추가합니다.

참고:
다음 예제에서는 .NET Framework 버전 1.0 서비스 팩 3 이상 또는 .NET Framework 버전 1.1 서비스 팩 1 이상이 필요합니다.

다음 C# 예제에서는 그룹에 단일 멤버를 추가하는 방법을 보여 줍니다.

// Bind to the group.
DirectoryEntry group = dom.Children.Find(groupDN);

// Add the user to the group.
group.Properties["member"].Add(userDN);

// Commit the changes to the group.
group.CommitChanges();

다음 Visual Basic .NET 예제에서는 그룹에 단일 멤버를 추가하는 방법을 보여 줍니다.

' Bind to the group.
Dim group As New DirectoryEntry(groupDN)

' Add the user to the group.
group.Properties("member").Add(userDN)

' Commit the changes to the group.
group.CommitChanges()

단일 작업에서 여러 멤버를 그룹에 추가하려면 AddRange 메서드를 사용하여 멤버의 고유 이름을 그룹 개체에 대한 멤버 속성에 추가합니다.

다음 C# 예제에서는 그룹에 여러 멤버를 추가하는 방법을 보여 줍니다.

// Bind to the group.
DirectoryEntry group = dom.Children.Find(groupDN);

// To add multiple users to a group, use the AddRange method.
group.Properties["member"].AddRange(new string[] {userDN1, userDN2});

// Commit the changes to the group.
group.CommitChanges();

다음 Visual Basic .NET 예제에서는 그룹에 여러 멤버를 추가하는 방법을 보여 줍니다.

' Bind to the group.
Dim group As New DirectoryEntry(groupDN)

' To add multiple users to a group, use the AddRange method.
group.Properties("member").AddRange(New String() {userDN1, userDN2})

' Commit the changes to the group.
group.CommitChanges()

참고 항목

참조

PropertyValueCollection
System.DirectoryServices

개념

그룹 관리

Send comments about this topic to Microsoft.

Copyright © 2007 by Microsoft Corporation. All rights reserved.