Symantec Management Platform (Notification Server)

 View Only
  • 1.  PC Add\Remove Program Report

    Posted Apr 19, 2012 10:45 AM

    I would like to create a report that would allow you to select or enter a PC name and will display the add\remove program list for that 1 PC.

     

    Is there a built in report that already does this?



  • 2.  RE: PC Add\Remove Program Report

    Posted Apr 19, 2012 10:52 AM

    Here's what I've been using but I haven't perfected it yet.  But it has helped me.  Just need to change the table referenced throughout the query to reference the correct add and remove programs table you would like or are trying to use.

    DECLARE @v1_Application nvarchar(max)
       SET @v1_Application = N'%Application%'
    DECLARE @v2_Computer nvarchar(max)
       SET @v2_Computer = N'%Computer%'
    DECLARE @v3_TrusteeScope nvarchar(max)
       SET @v3_TrusteeScope = N'%TrusteeScope%'
    SELECT
       [vri4_Computer].[Guid] AS [_ItemGuid],
       [vri4_Computer].[Name] AS [Computer],
       [dca5_AddRemoveProgram].[DisplayName] AS [Application],
       [dca5_AddRemoveProgram].[DisplayVersion] AS [Version],
       [vasset].[status]
    FROM
       [vRM_Computer_Item] AS [vri4_Computer]
          LEFT OUTER JOIN [Inv_AddRemoveProgram] AS [dca5_AddRemoveProgram]
             ON ([vri4_Computer].[Guid] = [dca5_AddRemoveProgram].[_ResourceGuid])
     Left Outer Join [vasset] ON ([vri4_Computer].[Guid] = [vasset].[_ResourceGuid])

    Where [dca5_AddRemoveProgram].[DisplayName] LIKE  N'%Application%' AND [vri4_Computer].[Name] LIKE N'%Computer%' AND [vri4_Computer].[IsManaged] LIKE '1' and [vasset].[status] LIKE 'Active'

    Order by
    [dca5_AddRemoveProgram].[DisplayName],
    [dca5_AddRemoveProgram].[DisplayVersion]

     

     

    Hope this helps,

     

    Misty

     

     



  • 3.  RE: PC Add\Remove Program Report

    Posted Apr 19, 2012 11:29 AM

    Thanks Misty, I will let you know. I did find something similar: Reports - Discovery and Inventory - Inventory - Cross Platform - Software/Applications - Software - Installed Software

    From there you can just enter the name and for software enter in %.



  • 4.  RE: PC Add\Remove Program Report
    Best Answer

    Posted Apr 19, 2012 11:54 AM

    There's a default report for this:

    Reports > All Reports, then expand Reports > Discovery and Inventory > Inventory > Cross-Platform > Software/Applications > Software > Installed Software by Computer

    Hope this helps!



  • 5.  RE: PC Add\Remove Program Report

    Posted Apr 19, 2012 12:20 PM

    See screen shot for paramenters for the report.