/build/static/layout/Breadcrumb_cap_w.png

K1000 Report that displays a count of Java Installations

I need to create a report that will display a count of Java version xxx.xxx installed on all of machines managed by KACE.

It can be any format or even graphical in nature.  For example the report needs to tell me I have 80 machines with Java 7 Update 25, 125 machines with Java 7 update 16, etc.


0 Comments   [ + ] Show comments

Answers (2)

Answer Summary:
Posted by: SMal.tmcc 10 years ago
Red Belt
2

Here is what I use

 


Comments:
  • Very cool, works like a charm. Thank you very much - wd_bs 10 years ago
    • I throw the last sync in so I know if it needs to be worried about or not. We swap out machines here and sometimes the old machine gets left in Kace. - SMal.tmcc 10 years ago
  • Gotcha. Thank again - wd_bs 10 years ago
Posted by: dugullett 10 years ago
Red Belt
0

It sounds like Smal has already answered this, but here's another form of what you can use. This will only include machines that have inventoried in the past two weeks. If you don't need that take that line out.

SELECT S.DISPLAY_NAME, COUNT(DISTINCT M.NAME) AS 'Machine Count'

FROM MACHINE M

LEFT JOIN MACHINE_SOFTWARE_JT MSJT ON M.ID = MSJT.MACHINE_ID

LEFT JOIN SOFTWARE S ON MSJT.SOFTWARE_ID = S.ID

WHERE S.DISPLAY_NAME LIKE 'JAVA %'

AND S.DISPLAY_NAME LIKE '%UPDATE%'

AND M.LAST_SYNC > DATE_SUB(NOW(), INTERVAL 2 WEEK)

GROUP BY S.DISPLAY_NAME

ORDER BY S.DISPLAY_NAME

Comments:
  • Thank you. This works great as well. - wd_bs 10 years ago

Don't be a Stranger!

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

Sign up! or login

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