/build/static/layout/Breadcrumb_cap_w.png

Microsoft .NET Framework 4 - Reports not showing the full results

I have an issue with the reporting feature (using the wizard) in KACE.  I am trying to run a report to tell me how many machines have Framework 4 installed on them.  I know I can look and see which ones have them installed under the software tab, but the problem is not just singled out to this one report.  In this instance, I created the report and added a rule to filter only machines that have the Display Name Microsoft .NET Framework 4.  I have close to 600 machines and the report only returns 3 that have Framework 4 installed.  I know that I have installed it on over 500+ computers and verified this.  Anyone else have issues with the wizard?

I am not a SQL guy, but can I get better results writing a SQL code for this report?

Thank you.


0 Comments   [ + ] Show comments

Answers (1)

Answer Summary:
SELECT M.NAME, S.DISPLAY_NAME, S.DISPLAY_VERSION FROM MACHINE M, MACHINE_SOFTWARE_JT MS, SOFTWARE S WHERE M.ID = MS.MACHINE_ID AND MS.SOFTWARE_ID = S.ID AND S.DISPLAY_NAME LIKE '%FRAMEWORK 4%' -- ADJUST CRITERIA HERE AND S.IS_PATCH = 0 ORDER BY M.NAME, S.DISPLAY_NAME
Posted by: dchristian 12 years ago
Red Belt
2

I think this will at least get you going in the right direction.

 

SELECT M.NAME,

S.DISPLAY_NAME,

  S.DISPLAY_VERSION

 FROM MACHINE M,

MACHINE_SOFTWARE_JT MS,

SOFTWARE S

WHERE M.ID = MS.MACHINE_ID

  AND MS.SOFTWARE_ID = S.ID

  AND S.DISPLAY_NAME LIKE '%FRAMEWORK 4%' -- ADJUST CRITERIA HERE

  AND S.IS_PATCH = 0

ORDER BY M.NAME, S.DISPLAY_NAME

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