일상다반사 로그

How to Add AD user to Groups C# (AD 사용자 그룹 멤버추가) 본문

IT/C,C#

How to Add AD user to Groups C# (AD 사용자 그룹 멤버추가)

일상다반사로그 2020. 3. 18. 21:17
반응형


Active Directory에 그룹을 신규로 만들어

그룹에 사용자 계정을 추가 하고 싶을 떄

C#으로는 아래와 같은 방법으로 가능하다.

단 여기서 필요사항은

그룹의 DN 값

그리고 사용자의 DN값

위 두 값이 정확하지 않다면 오류가 발생할 수 있다. 

public void addGroup()
{
     try
         {
             DirectoryEntry ent = new DirectoryEntry("LDAP://" + groupdn);
             ent.Properties["member"].Add(userdn);
             ent.CommitChanges();
             ent.Close();

         }
         catch (System.DirectoryServices.DirectoryServicesCOMException e)
         {
              MessageBox.show(e.toString());
          }

}

반응형

'IT > C,C#' 카테고리의 다른 글

C# https/security/tls/보안처리/ServicePointManager  (0) 2020.01.04
C# 마우스 이벤트  (0) 2018.07.16
DataGridView - 읽기 전용  (0) 2017.12.04
c# FileSystemWatcher Class  (0) 2017.11.21
Stack  (0) 2017.11.15
Comments