Voila, j'ai un script VBS qui m'affiche pour chaque utilisateur, les groupes auxquels il appartient.
je l'ai transcrit en ASP, mais il me dit "la propriété n'est pas dans le cache". ca bug avec la methode getex.
qui saurais comment contourner ce probleme?
voici le script :
Set objOU = GetObject("LDAP://OU=Utilisateurs,OU=DS,DC=ADCAP,DC=EDF,DC=FR" )
ObjOU.Filter= Array("user" )
For Each objUser in objOU
if samaccountname=objUser.samaccountname then
response.Write("trouvé" )
arrMemberOf = objUser.GetEx("memberOf" )
For Each Group in arrMemberOf
response.Write(Group)
Next
end if
Next