Client Management Suite

 View Only
  • 1.  Anyway to get a list of all applications installed across all workstations?

    Posted Jul 29, 2015 06:53 PM

    We are running Altiris 7.1 and going through some application whitelisting with another product.  We are trying to get a list of all the applications we have on our different workstations to help us go through and figure what needs to be whitelisted.  Does anyone have a query or can point me to a place where I can try to gether that info?

    Thanks,

     



  • 2.  RE: Anyway to get a list of all applications installed across all workstations?

    Posted Jul 30, 2015 09:46 AM

    If they are all PCs you can get a look at unique applications and versions with the simple query:

    SELECT DISTINCT
    [Inv_AddRemoveProgram].[DisplayName],
    [Inv_AddRemoveProgram].[DisplayVersion]

    FROM 
    [Inv_AddRemoveProgram]



  • 3.  RE: Anyway to get a list of all applications installed across all workstations?
    Best Answer

    Posted Jul 31, 2015 10:23 AM

     

    Hi drheim,

    You can check out default reports in the Reports tab:

    Capture_17.PNG

     

    Regards.

     



  • 4.  RE: Anyway to get a list of all applications installed across all workstations?

    Posted Jul 31, 2015 10:36 AM

    Thanks guys.  That helps a lot.  I knew about the Inv_AddRemoveProgram Table and had already queried it, but had forgotten the location of the built in report.  The data is basically the same, but the built-in report does have a count in it which is nice.  Thanks

    Dan