Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / VB

A VB.NET example to list computers in your domain

4.00/5 (3 votes)
12 Apr 2011CPOL 34.8K  
A small example of how to list computers in your domain
You can type the "net view" DOS command to get the list of computers or shared resources in your workgroup. If you want to achieve a similar thing in the code the following example can help.

Add System.DirectoryServices and System.Net references to your project and import them. The following code lists all "computers" in your domain.
VB
Public Function GetComputers() As String
Dim result As String = ""

' Get the domin name
Dim ipproperties As NetworkInformation.IPGlobalProperties = NetworkInformation.IPGlobalProperties.GetIPGlobalProperties()
Dim domain As String = ipproperties.DomainName

Dim domainEntry As DirectoryEntry = New DirectoryEntry("WinNT://" + domain)
domainEntry.Children.SchemaFilter.Add("computer")

For Each computer As DirectoryEntry In domainEntry.Children
    result = result & computer.Name & Environment.NewLine
Next

Return result

End Function


If you want to get the list of users instead of computers then change the line containing Add("computer") to Add("user").

For more tips for Microsoft developers see my blog: http://morrisbahrami.blogspot.com[^]

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)