Server Management Suite

 View Only
Expand all | Collapse all

Patch Mgmt 7.0 - Needed: Expounded View Windows Compliance by Update

  • 1.  Patch Mgmt 7.0 - Needed: Expounded View Windows Compliance by Update

    Posted Sep 09, 2011 03:09 PM

    I use the Windows Compliance by Update report to easily see where I am vulnerable for each bulletin/KB. It is easy to right-click on a KB and check what server is still vulnerable. It would be nice to not have to right-click but have all the information displayed on one page.

    1. I wonder if it is possible to create a custom report that displays all KBs and vulnerable servers within a month?

    2. Where can I find the membership filter names for each of the KBs..ie..All Computers Missing NDP20SP2-KB2539631-x64.exe?

     

    thanks

    rwp



  • 2.  RE: Patch Mgmt 7.0 - Needed: Expounded View Windows Compliance by Update

    Posted Sep 12, 2011 02:30 PM

    You will need to clone the stored procedure, clone the report, point the report to the cloned stored procedure, and then modify the stored procedure to meet your requirements.  You can pass parameters to the stored procedure just as you can pass parameters to a SQL query.

    You can find the membership filters by searching in the top, right-hand corner of the SMC.  Then view all filters and right-click and open the filter in a new window.  For example, here's the SQL for some random Java update:

    SELECT _ResourceGuid FROM Inv_Applicable_Windows_Software_Update WHERE SoftwareUpdateGuid='9a056f38-7a44-411b-ba44-9b2c95e8c786' and _ResourceGuid not in
        (select _ResourceGuid from Inv_Installed_Windows_Software_Update where SoftwareUpdateGuid='9a056f38-7a44-411b-ba44-9b2c95e8c786')

    (This was performed in Patch Management 7.1 SP1.)

    Does this information answer the questions you had?