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)
Please log in to answer
Posted by:
grayematter
10 years ago
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.