Hi we have QMX / SCCM 2007 install on mulitpue servers.
On 2 of the servers the Hardware inventory doesn't seem to be updating where are the Software inventory is.
It most easily seen when you run the SQL query on the database
SELECT sys.ResourceID, sys.Name0, sys.Operating_system_Name_and0, hw.LastHWScan, sw.LastScanDate
FROM v_R_System sys
LEFT JOIN v_GS_WORKSTATION_STATUS hw ON hw.ResourceID = sys.ResourceID
LEFT JOIN v_GS_LastSoftwareScan sw on sw.ResourceID = sys.ResourceID
WHERE sys.Operating_System_Name_and0 not like '%Micro%'
The timestamp for the Software Inventory will update every time you run the "_ScheduledInvocationBatch.cmd" for the matching system type, where as the Hardware Inventory timestamp remains the same.
Can anyone suggest where I can look to find out what going on. All the vb script, js files on the "working" server appear to be the same as the non working servers