VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



ADSI sample showing how to list computers that are connected to a specific domain controller.

by Bart Jonkman (20 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Wed 19th February 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

ADSI sample showing how to list computers that are connected to a specific domain controller.

Rate ADSI sample showing how to list computers that are connected to a specific domain controller.



' This script lists computers that are connected to a specific domain controller

' Goto http://www.activxperts.com/activmonitor and click on ADSI Samples
' for more samples


Sub ListConnectedComputers( strDomain )
Dim objPDC

Set objPDC = getobject("WinNT://" & strDomain )
objPDC.filter = Array("Computer")

For Each objComputer In objPDC
WScript.Echo "Name: " & objComputer.Name
Next

End Sub



' Main

Dim strDomain
Do
   strDomain = inputbox( "Please enter a domainname", "Input" )
Loop until strDomain <> ""
ListConnectedComputers( strDomain )

WScript.Echo( vbCrlf & "For more samples, goto http://www.activxperts.com/activmonitor and click" )
WScript.Echo( "on ADSI samples" )

Download this snippet    Add to My Saved Code

ADSI sample showing how to list computers that are connected to a specific domain controller. Comments

No comments have been posted about ADSI sample showing how to list computers that are connected to a specific domain controller.. Why not be the first to post a comment about ADSI sample showing how to list computers that are connected to a specific domain controller..

Post your comment

Subject:
Message:
0/1000 characters