Hi,
Is it possible to create a Group/Role in AD using .Net DirectoryServices?
If so could someone point me in the direction of a code sample.
Thanks,
Ben.
u can use the code
DirectoryEntry dirEntry = new DirectoryEntry(LDAPPath, userName,passWord);DirectoryEntry grp= dirEntry.Children.Add("cn=testGrp" ,"group");