Hello - I'm trying to pull a report to grab the
extensionAttribute1 field in our AD user table:
I don't see an option to select it in the Report builder in Lansweeper. Here is what I currently have setup:
Select Top 1000000 tblADusers.OU,
tblADusers.Country,
tblADusers.Username,
tblADusers.email,
tblADusers.Lastname,
tblADusers.Firstname,
tblADusers.EmployeeID,
tblADusers.Telephone,
tblADusers.Title,
tblADObjects.sAMAccountName As ManagerName
From tblADObjects
Right Join tblADusers On tblADObjects.ADObjectID =
tblADusers.ManagerADObjectId
Order By tblADusers.Username
In Active Directory, It is labeled under the Attribute Editor tab, then under extensionAttribute1 field. I'd like to get the value of that field.
Thanks!