Hi,
just wondering do we able to create group or member in Active Directory using VB.NET? How? can i have any example?
thanks
Printable View
Hi,
just wondering do we able to create group or member in Active Directory using VB.NET? How? can i have any example?
thanks
This may Help!
http://msdn.microsoft.com/library/de...oryobjects.asp
call the Add method on the native active directory objectCode:[C#]
deGroup.Invoke("Add", new object[] {deUser.Path.ToString()});
deGroup.Close();