Hi All, I'm trying to bind to an user and fetch a multivalue attribute, here i'm fecthing memberof, (there are values in that attribute) I'm using JScript. When we fetch memberOf it returns array. But the below code says "Object is not a collection" Any help much appreciated var objUser = GetObject("LDAP://testrenu.com/CN=TestScott,CN=Users,DC=testrenu,DC=com") testarr = objUser.GetEx("memberOf"); var e = new Enumerator(testarr); for(e; !e.atEnd(); e.moveNext()) { svalue = e.item(); WScript.Echo(svalue); }