Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 77905
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:54:13+00:00 2026-05-10T20:54:13+00:00

How can I get a full list of Groups in my Active Directory?

  • 0

How can I get a full list of Groups in my Active Directory?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:54:13+00:00Added an answer on May 10, 2026 at 8:54 pm

    Check out System.DirectoryServices (An ASP.NET 2.0 reference):

    C#-example to get groups:

    using System.DirectoryServices;   public class test {      private void main()     {         foreach (string @group in GetGroups())         {             Debug.Print(@group);         }     }      public List<string> GetGroups()     {         DirectoryEntry objADAM = default(DirectoryEntry);         // Binding object.          DirectoryEntry objGroupEntry = default(DirectoryEntry);         // Group Results.          DirectorySearcher objSearchADAM = default(DirectorySearcher);         // Search object.          SearchResultCollection objSearchResults = default(SearchResultCollection);         // Results collection.          string strPath = null;         // Binding path.          List<string> result = new List<string>();          // Construct the binding string.          strPath = 'LDAP://stefanserver.stefannet.local';         //Change to your ADserver           // Get the AD LDS object.          try         {             objADAM = new DirectoryEntry(strPath);             objADAM.RefreshCache();         }         catch (Exception e)         {             throw e;         }          // Get search object, specify filter and scope,          // perform search.          try         {             objSearchADAM = new DirectorySearcher(objADAM);             objSearchADAM.Filter = '(&(objectClass=group))';             objSearchADAM.SearchScope = SearchScope.Subtree;             objSearchResults = objSearchADAM.FindAll();         }         catch (Exception e)         {             throw e;         }          // Enumerate groups          try         {             if (objSearchResults.Count != 0)             {                 foreach (SearchResult objResult in objSearchResults)                 {                     objGroupEntry = objResult.GetDirectoryEntry();                     result.Add(objGroupEntry.Name);                 }             }             else             {                 throw new Exception('No groups found');             }         }         catch (Exception e)         {             throw new Exception(e.Message);         }          return result;     }  } 

    VB-example to get groups:

    Imports System.DirectoryServices  Public Class Form1  Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load     For Each group As String In GetGroups()         Debug.Print(group)     Next End Sub  Public Function GetGroups() As List(Of String)     Dim objADAM As DirectoryEntry                   ' Binding object.     Dim objGroupEntry As DirectoryEntry             ' Group Results.     Dim objSearchADAM As DirectorySearcher          ' Search object.     Dim objSearchResults As SearchResultCollection  ' Results collection.     Dim strPath As String                           ' Binding path.     Dim result As New List(Of String)      ' Construct the binding string.             strPath = 'LDAP://stefanserver.stefannet.local' 'Change to your ADserver      ' Get the AD LDS object.     Try         objADAM = New DirectoryEntry(strPath)         objADAM.RefreshCache()     Catch e As Exception         Throw e     End Try      ' Get search object, specify filter and scope,     ' perform search.     Try         objSearchADAM = New DirectorySearcher(objADAM)         objSearchADAM.Filter = '(&(objectClass=group))'         objSearchADAM.SearchScope = SearchScope.Subtree         objSearchResults = objSearchADAM.FindAll()     Catch e As Exception         Throw e     End Try      ' Enumerate groups     Try         If objSearchResults.Count <> 0 Then             Dim objResult As SearchResult             For Each objResult In objSearchResults                 objGroupEntry = objResult.GetDirectoryEntry                 result.Add(objGroupEntry.Name)             Next objResult         Else             Throw New Exception('No groups found')         End If     Catch e As Exception         Throw New Exception(e.Message)     End Try      Return result End Function End Class 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With JRockit, you can get the full list of threads by any means, and
How i can get full right name of generic type? For example: This code
Edit: You can get the full source here: http://pastebin.com/m26693 Edit again: I added some
Is there any method I can get the full JSON data from jqGrid when
How can I get the full/absolute URL (e.g. https://example.com/some/path ) in Django without the
i want to get the full address of user programatically using c# how can
I can get the file path with: (message (file-name-directory (or buffer-file-name load-file-name))) But if
Can get all triples with value null in specific field? All people with date_of_birth
We can get class Class object by 3 methods: MyClass.class obj.getClass Class.forName(className) I don't
I can get this to work: [<DllImport(user32.dll)>] extern bool GetClientRect(nativeint, RECT*) let getClientRect hwnd

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.