首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

C#怎么对AD中的计算机中的安全添加组或成员

2012-01-13 
C#如何对AD中的计算机中的安全添加组或成员请问各位大侠,C#能否对于AD中的计算机的安全里添加组或成员?能

C#如何对AD中的计算机中的安全添加组或成员
请问各位大侠,
C#能否对于AD中的计算机的安全里添加组或成员?
能的话给个方法吧?谢谢!

[解决办法]
DirectoryEntry dom = new DirectoryEntry();

// Find the container (in this case, the Consulting organizational unit) that you 
// wish to add the new group to.
DirectoryEntry ou = dom.Children.Find("OU=Consulting");

// Add the new group Practice Managers.
DirectoryEntry group = ou.Children.Add("CN=Practice Managers", "group");

// Set the samAccountName for the new group.
group.Properties["samAccountName"].Value = "pracmans";

// Commit the new group to the directory.
group.CommitChanges();

热点排行