→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Max-EDV
Engaged Sweeper
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
3 REPLIES 3
harringg
Champion Sweeper
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.
Max-EDV
Engaged Sweeper
Thank you for your fast answer.
Looking forward to 5.1 🙂
Hemoco
Lansweeper Alumni
Custom AD scanning is not possible. Additional AD scanning is planned for Lansweeper 5.1, but we do not yet have a release date for this feature.