Client Management Suite

 View Only
  • 1.  New installed Software and Hardware Report - NS7 MR1

    Posted Jul 01, 2010 04:49 AM
    Hi All, If you've done this before or have a method of doing it, please could you share this. We have a fairly simple request to produce a report of new installed Software and Hardware once a week. How can i achieve this through Inventory Solution? It seems this is quite an involved process to setup, or am i wrong? Thanks Steve


  • 2.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 01, 2010 01:35 PM
    definately welcome! :-p


  • 3.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 05, 2010 02:00 AM

    Apparently this was in NS 6 but has been removed from NS7. Has anyone customised a version 7 report to allow for this?



  • 4.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 06, 2010 10:21 AM

    You want to know, by computer, what software and hardware has changed?  Or do you want to know for the entire organization which application or device has been seen for the first time (this is our first Kazaa detection, this is our first HP 1320n printer)?



  • 5.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 06, 2010 10:36 AM
    I suppose both would be usefull, however i'd be more than happy to settle for knowing newly installed apps by Computer and Hardware Change by Computer.

    I cant understand why this isnt available in NS7 where as it was in NS6...

    Have you done something similar to this as well?

    The idea was that we would be able to keep track of our Microsoft Office installations (as well as other custom specified sotware) and New Computer purchases without having to purchase the Asset management module and get by with just our Inventory Solution...

    Steve


  • 6.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 19, 2010 02:45 PM

    For software, I have an Automation Policy that runs daily and sends a report to me of any software installed over the past day.  It pulls the data from the add remove programs data.  I went into the Automation Policies and created a new policy, and used RAW SQL as the data source.  This is the SQL I have used.

    SELECT InvHist_AddRemoveProgram.DisplayName as [Product Name],
    InvHist_AddRemoveProgram.DisplayVersion as 'Product Version',
    vComputer.Name AS [Computer Name],
    vComputer.[IP Address],
    vComputer.Domain,
    case when InstallFlag = 1 then 'Installed' else 'Uninstalled' end as Activity,
    InventoryDate as [Inventory Date]
    FROM InvHist_AddRemoveProgram INNER JOIN vComputer ON InvHist_AddRemoveProgram._ResourceGuid = vComputer.Guid
    WHERE (InvHist_AddRemoveProgram.DisplayName LIKE '%') and (InstallDate between getdate()-1 and getdate())

    It works pretty well.  I am not an SQL person and I have just recenlty pushed Altiris so there might be a better/easier/more complete way of doing this, but it's a start.



  • 7.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 19, 2010 03:09 PM
    Are you using NS7?


  • 8.  RE: New installed Software and Hardware Report - NS7 MR1

    Posted Jul 19, 2010 03:59 PM
    Yes I am.  I would like to include the software from the msi cache as well, just to make sure that it is capturing everything, but I've not had the time to messa round with the SQL.