If i use this code, i get a list of all groups in the domain, including the one i can't get with ENUMGROUP:

$Computer = GetObject("WinNT://tredom.local")
dim $filter[0]
$filter[0]="Group"
$Computer.filter = $filter

For Each $Group in $Computer
? $Group.Name
Next