In fact I want the users of one global group listed together with the age of their password. Your infos brought me a lot closer to that, but I always get all domain users listed (far more then I want).

Here's what I've got so far:

$domain = GetObject("WinNT://EMEA")
$domain.filter = "group",""

for each $user in $domain
$PasswordAge = $user.PasswordAge

? $user.name+ ": Password Age = "+$PasswordAge

next

Any idea ?

Thanx
Markus