1
我正在使用VS2005 .NET 2.0 C#。在Active Directory中添加新用戶
我目前正在參考一個網站在asp網頁上實現AD用戶管理。
我看過一種方法adds user to group
。
但是,有一些參數我不明白,並且知道要替換什麼。
下面是提供的方法:
public void AddToGroup(string userDn, string groupDn)
{
try
{
DirectoryEntry dirEntry = new DirectoryEntry("LDAP://" + groupDn);
dirEntry.Properties["member"].Add(userDn);
dirEntry.CommitChanges();
dirEntry.Close();
}
catch (System.DirectoryServices.DirectoryServicesCOMException E)
{
//doSomething with E.Message.ToString();
}
}
userDn
和groupDn
已經解釋,但我還是不知道該填什麼它
userDn
:CN=user, OU=USERS, DC=contoso, DC=com
groupDn
:用戶的distinguishedName來:該組的distinguishedname:CN=group,OU=GROUPS,DC=contoso,DC=com
我可以知道什麼是2參數和w我可以從這裏得到它們嗎?