/build/static/layout/Breadcrumb_cap_w.png

K1000: Software Inventory By Vendor Report

Hello,

I am using the Software Inventory By Vendor default report. This seems to work well, but is there any way to get this report to only show desired software?

This is the SQL for it:

Select PUBLISHER, DISPLAY_NAME, COUNT(DISPLAY_NAME) as Deployed_Count  from (SOFTWARE, MACHINE_SOFTWARE_JT)  
where SOFTWARE.ID = MACHINE_SOFTWARE_JT.SOFTWARE_ID 
and not IS_PATCH
GROUP BY DISPLAY_NAME
order by PUBLISHER, DISPLAY_NAME




0 Comments   [ + ] Show comments

Answers (1)

Posted by: grayematter 9 years ago
5th Degree Black Belt
0
You will need to add the desired software to the WHERE portion of the query.  For a fixed and defined list, add something like:
AND (DISPLAY_NAME IN ('FaceTime', 'Google Chrome', 'Bonjour', 'Dell KACE Agent', 'K1000 Agent', 'KACE Agent'))
For a larger or less defined list, you may want to use "like" operations.  To return all software with Google in the name along with titles including "Adobe Reader", add:
AND (  (DISPLAY_NAME LIKE '%google%')
or (DISPLAY_NAME LIKE '%Adobe Reader%'))

I hope this helps.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ