|
-
January 8th, 2006, 11:56 PM
#1
create group or member in Active Directory
Hi,
just wondering do we able to create group or member in Active Directory using VB.NET? How? can i have any example?
thanks
-
January 9th, 2006, 08:53 AM
#2
Re: create group or member in Active Directory
-
January 13th, 2006, 03:08 PM
#3
Re: create group or member in Active Directory
call the Add method on the native active directory object
Code:
[C#]
deGroup.Invoke("Add", new object[] {deUser.Path.ToString()});
deGroup.Close();
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|