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 994725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T06:36:58+00:00 2026-05-16T06:36:58+00:00

Possible Duplicate: Can I get more than 1000 records from a DirectorySearcher in Asp.Net?

  • 0

Possible Duplicate:
Can I get more than 1000 records from a DirectorySearcher in Asp.Net?

I am searching for existing logins using ADS Directory searcher findAll() method (as in following code). It appears the findall method returns only 1000 entries although there are more entries than that.
How do I findAll() of every login ?

    IList<string> adslist = new List<string>();
    using (DirectoryEntry de = new DirectoryEntry("LDAP://armlink.com", null, null, AuthenticationTypes.Secure))
    using (DirectorySearcher ds = new DirectorySearcher(de, "(objectclass=user)", new string[] { "samaccountname" }))

        foreach (SearchResult sr in ds.FindAll())
        {
            string[] e = sr.Path.Split(new string[] { "LDAP://", "OU=", ",", "DC=", ".com", "/CN=" }, StringSplitOptions.RemoveEmptyEntries);
            ResultPropertyCollection pc = sr.Properties;
            adslist.Add(e[0] + "/" + pc["samaccountname"][0].ToString());
            //   Debug.WriteLine(adslist.Last());
        }
  • 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. Editorial Team
    Editorial Team
    2026-05-16T06:36:58+00:00Added an answer on May 16, 2026 at 6:36 am

    This is due to a server-side limit. From the DirectorySearcher.SizeLimit documentation:

    The maximum number of objects that the
    server returns in a search. The
    default value is zero, which means to
    use the server-determined default size
    limit of 1000 entries.

    And:

    If you set SizeLimit to a value that is larger than the server-determined default of 1000
    entries, the server-determined default is used.

    Basically from this, it looks like unless there’s a way of changing the server-side default, you’re going to be limited to 1000 entries. It’s possible that specifying a PageSize will let you fetch a certain number at a time, with a total greater than 1000… not sure.

    By the way, it looks like you should also have a using directive around the SearchResultCollection:

    using (SearchResultCollection results = ds.FindAll())
    {
        foreach (SearchResult sr in results) 
        {
            ...
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How can I get the client's IP address in ASP.Net MVC? I
Possible Duplicate: Android: How can I get the current foreground activity (from a service)?
Possible Duplicate: How can i get more then 50 results to display in excel
Possible Duplicate: How can I get a reference to a node directly after it
Possible Duplicate: How can I get a list of all the defined variables in
Possible Duplicate: CSS - percentage height I can't get the middle div of 3
Possible Duplicate: Getting odd/even part of a sequence with LINQ How can I get
Possible Duplicate: get name of current PHP script in include file Can an included
Possible Duplicate: How to get all of the IDs with jQuery? How can i
Possible Duplicate: Can I run from command line program created by Eclipse? I am

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.