Click to See Complete Forum and Search --> : create group or member in Active Directory


yolip
January 8th, 2006, 10:56 PM
Hi,

just wondering do we able to create group or member in Active Directory using VB.NET? How? can i have any example?



thanks

HanneSThEGreaT
January 9th, 2006, 07:53 AM
This may Help!

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vboriintroductiontoactivedirectoryobjects.asp

mehdi62b
January 13th, 2006, 02:08 PM
call the Add method on the native active directory object[C#]
deGroup.Invoke("Add", new object[] {deUser.Path.ToString()});
deGroup.Close();