Here is our solution, custom report made in SMS. Hope this helps people in the future. Displays, computer name, model, manufacturer, processor, memory and serial tag.
SELECT DISTINCT Computer_System_DATA.Name0 'Computer Name',
Computer_System_DATA.Manufacturer00 'Manufacturer',
Computer_System_DATA.Model0 'Model',
processor_data.Name0 'Processor',
PC_BIOS_DATA.serialNumber00 'Serial Number',
PC_Memory_DATA.TotalPhysicalMemory0 'Memory'
FROM Computer_System_DATA
LEFT OUTER JOIN processor_data ON Computer_System_DATA.machineID = processor_data.MachineID
LEFT OUTER JOIN PC_BIOS_DATA ON Computer_System_DATA.machineID = PC_BIOS_DATA.MachineID
LEFT OUTER JOIN PC_Memory_DATA ON Computer_System_DATA.machineID = PC_MEMORY_DATA.MachineID