Right now I am pulling up a list of computers using the following code:

Code:

$objDomain = getobject("WinNT://ourwonderfuldomain")



I was wondering how (and if) I could pull a list of computers from an Windows 2000 Active Directory using the above code along with Site. I am hoping that could pull the list faster than what I am using now which is:

Code:

$objDomain.filter = "computer",""
For Each $computer in $objDomain
If Left($computer.name, 2) = "ATL"
$_ = $lstListView.items.add($computer.name)
Endif
Next



Thanks for any feedback
_________________________
~Mwah