When viewing the resource manager for a resource, you might notice the Microsoft Hotfixes section. How is this populated?
8.x
This data is stored in the Inv_SW_Patch_Windows table. You can query this table using the following SQL query:
SELECT c.Name, ISNULL( a.[Description], N'') as Description, a.[Patch ID]FROM vRM_Network_Resource rJOIN vComputer c on c.Guid = r.GuidJOIN Inv_SW_Patch_Windows a ON a._ResourceGuid = r.GuidWHERE r.Deleted = 0
-- You can search by Computer Name OR Bulletin (Uncomment one of the lines below)--AND c.Name = '%ComputerName%'--AND [Patch ID] like '%Bulletin#%'
ORDER BY c.name, a.Description, a.[Patch ID]
This data is populated by Inventory Solution plug-in agent scanning of hardware and operating system files.