↧
Answer by Gabriel Luci for Querying LDAP in C# to get list of computers
You're almost there. A few things:Set the page size to 1000. AD won't give you any more than 1000 at a time, so if you set it to anything over that you'll only get 1000 (if DirectorySearcher doesn't...
View ArticleQuerying LDAP in C# to get list of computers
I am working with LDAP in my Windows Forms C# project.I created a CheckListBox, and started to create a method that queries the Active Directory for all my computers is the environment.The method...
View Article