Quantcast
Channel: Symantec Connect - Endpoint Management
Viewing all articles
Browse latest Browse all 7217

Filter to Detect Java Auto-Updater for Removal

$
0
0
I need a solution

Please forgive me if a solution has been posted elsewhere, but I was unable to find it.  Since the release of Java 8, I need to create a filter to show me all of the endpoints that have the Java Auto-Updater (the "Update" tab in the Java control panel) present so that I can uninstall it.  Currently, I use the following SQL in a filter:

select distinct [vif].[_ResourceGuid]
from [Inv_Installed_File_Details] vif
where FileResourceGuid='011c1286-bd8c-4bdf-8b4b-50987f7fecd8'

Up until recently, I thought this was working as expected.  But now I am finding systems that have the updater installed, but do not have my uninstallation policy in the software delivery tab, indicating that they are not being picked up by the filter.  I also see the reverse of this where the system is in my filter, but in fact does not have the updater installed.  The code above currently shows me about 81 systems.  When I try the code below instead, I get 355 results.  However when I connect to several systems in the filter and browse to the Java Updater installation path as shown in the last line of the code, there's nothing there.

select distinct [vif].[_ResourceGuid]
   FROM [RMV_Installed_File_Inventory] vif
   where [File Name] = 'jucheck.exe'
   AND [Path] LIKE 'C:\Program Files%\Common Files\Java%'

Is there a better way to do this?  I need to be sure that endpoints within my organization to not pick up Java 8 via the updater until we have a chance to test it with our web applications.  So I need something that is going to be pretty reliable.  I should also mention that I know very little about SQL.  Everything above I have pieced together from random forum postings and Google searches.  So I may need explanations of whatever somebody provides.

Any help would be greatly appreciated.


Viewing all articles
Browse latest Browse all 7217

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>