First, you haven't related the
tblAssetGroups to
tblAssets in your list of selected tables.
Second, do you definitely have an asset group called "!All Workstations"?
If you
do have an asset group "!All Workstations" defined, start by defining how you want
tblAssetGroups linked to
tblAssets. If you check the database documentation, you'll see that goes
- tblAssets -> tblAssetGroupLink -> tblAssetGroups
If you don't have that group defined, LANSweeper notes the domain role of computers. You might consider trying:
- remove tblAssetGroups from the list of tables
- add tblComputerSystem instead (joined on AssetID)
- create a filter WHERE tblComputerSystem.DomainRole < 2
(If you check the contents of
tblComputerSystem, you'll see that 0 is standalone workstation, 1 is member workstation and 2-6 are various categories of server.)
If you want to see domain role descriptions, add a join to
tblDomainRoles and add tblDomainRoles.DomainRoleName to your report.