Max-EDV wrote:
Hello.
Lansweeper (v5) seems to be able to do LDAP queries.
I want to read an additional filed from the AD-Users (The "Pager" field)
But i can't find out where/how Lansweeper does these LDAP queries.
Is it even possible?
Thanks for any advice,
Max
If you are looking for this field for searching/reporting purpsoses, AD management purposes, PowerShell will obtain this for you.
Get-ADUser homerj -Properties * | Select-Object CN, pager
Or for all users
Get-ADUser -filter * -Properties * | Select-Object CN, pager
And to dump to a CSV file
Get-ADUser -filter * -Properties * | Select-Object CN, pager | Export-Csv C:\AD\AD_Export-Pagers.csv -NoTypeInformation
I'm looking forward to LS being able to incorporate more AD data as well, as it appears to be in 5.1.