
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-17-2021 11:56 AM
When Lansweeper scans/adds new computers to its database it doesn't populate/update the Custom fields 'Location', 'Building' or 'Department' from Active Directory.
I have these entered in AD and it would be great if I didn't have to manually update them in Lansweeper.
Is there a way to do this I have overlooked?
Ps: IP Address Location is working fine, I am just looking for the additional functionality for reporting.
I found this query but it doesn't seem to work anymore:
Thanks!
I have these entered in AD and it would be great if I didn't have to manually update them in Lansweeper.
Is there a way to do this I have overlooked?
Ps: IP Address Location is working fine, I am just looking for the additional functionality for reporting.
I found this query but it doesn't seem to work anymore:
UPDATE tblCompCustom
SET Location = tblADComputers.Location
FROM tblCompCustom INNER JOIN
tblADComputers ON tblCompCustom.Computername = tblADComputers.Computername
Thanks!
Labels:
- Labels:
-
General Discussion
3 REPLIES 3

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-31-2021 02:00 PM
You can try this:
UPDATE tblAssetCustom
SET Location = tblADComputers.Location
FROM tblAssetCustom
INNER JOIN tblADComputers ON tblAssetCustom.AssetID = tblADComputers.AdcomputerID
where tblADComputers.Location is not null
UPDATE tblAssetCustom
SET Location = tblADComputers.Location
FROM tblAssetCustom
INNER JOIN tblADComputers ON tblAssetCustom.AssetID = tblADComputers.AdcomputerID
where tblADComputers.Location is not null

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-17-2021 01:29 PM
Hey,
thanks for your reply.
I just want to update the custom location field with the location informationen from the AD scan.
The script above seemed to have work in the past, unfortunately it doesn't work anymore.
Thanks!
thanks for your reply.
I just want to update the custom location field with the location informationen from the AD scan.
The script above seemed to have work in the past, unfortunately it doesn't work anymore.
Thanks!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-17-2021 01:04 PM
So the only AD attributes scanned by Lansweeper are :
https://www.lansweeper.com/knowledgebase/active-directory-user-and-computer-attributes-scanned-by-lansweeper/
Computer attributes
BitLocker recovery key
Comment
Company
Description
Groups
Location
Manager
OU
Status (enabled or disabled)
So the only field it will scan will be Location, do you gave as can setup for "Active Directory Computer Path" to pull this data in ?
So as I understand it, if the device is scanned via IP the Active Directory data will only appear once AD has been Completed, which is usually once a day ?
Cheers
A
https://www.lansweeper.com/knowledgebase/active-directory-user-and-computer-attributes-scanned-by-lansweeper/
Computer attributes
BitLocker recovery key
Comment
Company
Description
Groups
Location
Manager
OU
Status (enabled or disabled)
So the only field it will scan will be Location, do you gave as can setup for "Active Directory Computer Path" to pull this data in ?
So as I understand it, if the device is scanned via IP the Active Directory data will only appear once AD has been Completed, which is usually once a day ?
Cheers
A
