CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2002
    Location
    Australia
    Posts
    207

    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

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: create group or member in Active Directory


  3. #3
    Join Date
    Sep 2004
    Location
    Tehran(Ir)
    Posts
    469

    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
  •  





Click Here to Expand Forum to Full Width

Featured