Hi,
I tried the script:

[quote=apronk]Haven't really read the whole thread by the simplest way to list users in a specific ou would be this:
 Code:
$=SetOption('Explicit','On')
$=SetOption('NoVarsInStrings','On')
Dim $objAdsPath, $obj, $filter[0]
$filter[0] = "User"
$objADsPath = GetObject("LDAP://OU=Normal,OU=Users,OU=SomeOU,DC=mydomain,DC=local")
$objAdsPath.filter = $filter
For Each $obj in $objAdsPath
  ? $obj.CN
Next



but get an error:

ERROR : Error in expression: this type of array not supported in expressions.!
in the line

$objAdsPath.filter = $filter

What am I doing wrong?
I changed the OU and DC paramters in the LDAP-query to match my active directory.

Regards

Jürgen