node-activedirectory
node-activedirectory copied to clipboard
Get all informations
Hi all Can you tell me how can i get all informations about a group I want to get the field "Remarque" which is in the groups and i actually can't have this
( sorry for my bad english .... ) Thx Max
You have to pass in options. If you want to get all attributes from a group / user pass in this object like so:
var opts = { attributes: [ * ] }
And you can pass this in to your search like so:
findGroup(opts, groupName, callback)
Then you get all the attributes from the found group.