How does the Microsoft hotfixes section of Resource Manager get populated?
search cancel

How does the Microsoft hotfixes section of Resource Manager get populated?

book

Article ID: 181076

calendar_today

Updated On:

Products

IT Management Suite Client Management Suite

Issue/Introduction

 When viewing the resource manager for a resource, you might notice the Microsoft Hotfixes section.  How is this populated?

 

Environment

8.x

Resolution

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 r
JOIN vComputer c on c.Guid = r.Guid
JOIN Inv_SW_Patch_Windows a ON a._ResourceGuid = r.Guid
WHERE 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.