vote up 1 vote down star
1

How to get list of computer names in a domain using C# ?

flag

33% accept rate

2 Answers

vote up 0 vote down

If you are on a windows domain, you can run an LDAP query against the directory to pull back a list of Machine Accounts

link|flag
vote up 4 vote down
using System.DirectoryServices;

public void PrintComputersInDomain (string domainName)
{
    DirectoryEntry de = new DirectoryEntry ("LDAP://" + domainName);
    de.Children.SchemaFilter.Add ("computer");
    foreach (DirectoryEntry c in de.Children)
    {
        Console.WriteLine (c.Name);
    }
}

from http://msmvps.com/blogs/siva/archive/2008/01/25/enumerating-computers-in-a-domain.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.