Is it possible to set an Alert when someone adds software to their machine? If so, how? Particularly I am looking if a user has upgraded their Java to a "not free" version.
Is it possible to set an Alert when someone adds software to their machine? If so, how? Particularly I am looking if a user has upgraded their Java to a "not free" version.
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
IgorAngelini
2 years ago
You could run this report to see who has Java 8 past (inclusive) version 221
S.DISPLAY_VERSION
FROM MACHINE
LEFT JOIN MACHINE_SOFTWARE_JT MSJ
ON MSJ.MACHINE_ID = MACHINE.ID
LEFT JOIN SOFTWARE S
ON S.ID = MSJ.SOFTWARE_ID
WHERE S.DISPLAY_NAME like "%JAVA 8%"
AND ((S.DISPLAY_VERSION LIKE "8.0.3%"
OR S.DISPLAY_VERSION LIKE "8.0.2%")
AND S.DISPLAY_VERSION NOT LIKE "8.0.20%"
)
Posted by:
Hobbsy
2 years ago
Posted by:
RD94
2 years ago