I think my problem may be that some of my laptops are on a docking station. It appears that they are showing up twice in my report below. Is there a way to only have them appear once...say to the wired nic?
Select Top 1000000 dbo.tblComputers.Computer As [Computer Name],
dbo.tblComputersystem.Manufacturer, dbo.tblComputersystem.Model,
Cast(dbo.web30ProcessorCapacity.NrOfProcessors As VarChar) + ' * ' +
Cast(dbo.web30ProcessorCapacity.MaxClockSpeed As VarChar) + ' Mhz' As
Processor, Cast(Cast(Cast(dbo.tblComputersystem.TotalPhysicalMemory As BigInt)
/ 1024 / 1024 As Numeric) As VarChar) + ' KB' As Memory,
Cast(Cast(Cast(dbo.tblDiskdrives.Size As BigInt) / 1024 / 1024 /
1024 As Numeric) As VarChar) + ' GB' As HDDsize, dbo.tblComputers.LastknownIP
As [IP Address], dbo.tblComputers.LastActiveScan As [Date Scanned],
tblComputerSystemProduct.IdentifyingNumber As Serial,
tblBIOS.SMBIOSBIOSVersion As [BIOS Version],
tblADComputers.OperatingSystemServicePack As [XP Service Pack],
tblSystemEnclosure.SMBIOSAssetTag
From dbo.tblComputers Inner Join
dbo.tblComputersystem On dbo.tblComputers.Computername =
dbo.tblComputersystem.Computername Inner Join
dbo.tblDiskdrives On dbo.tblComputers.Computername =
dbo.tblDiskdrives.Computername Left Outer Join
dbo.web30ProcessorCapacity On dbo.tblComputers.Computername =
dbo.web30ProcessorCapacity.Computername Inner Join
tblComputerSystemProduct On dbo.tblComputers.Computername =
tblComputerSystemProduct.Computername Inner Join
tblBIOS On dbo.tblComputers.Computername = tblBIOS.Computername Inner Join
tblADComputers On tblADComputers.Computername = dbo.tblComputers.Computername
Inner Join
tblSystemEnclosure On dbo.tblComputers.Computername =
tblSystemEnclosure.Computername
Where dbo.tblComputersystem.Domainrole = '1' And dbo.tblDiskdrives.Caption =
'c:'
Order By dbo.tblComputers.Computername