Skip to main content

SCCM Collection for computes with Java version 7

We needed to uninstall Java 7 from Machines.For that we created a collection based on product ID instead of Display Name in Add Remove programs.

This collection query will include all machines that have 32-bit or 64-bit Java Installed

select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_INSTALLED_SOFTWARE.ProductCode like "{26a24ae4-039d-4ca4-87b4-2f832170%" or SMS_G_System_INSTALLED_SOFTWARE.ProductCode like "{26A24AE4-039D-4CA4-87B4-2F864170%"


We can then uninstall the products using a SCCM

create a package to run this script:

You may need to add more products depending on other versions that you have installed for Java for me we only had java 7  update 3 , 4 7, 9 ,10


strComputer = "."
Set objShell = CreateObject("WScript.Shell")
Set objProducts = CreateObject("Scripting.Dictionary")
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_Product",,48)

For Each objItem in colItems
objProducts.Add objItem.IdentifyingNumber, objItem.Caption
Next

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F83217003FF}") Then
' Uninstall java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F83217003FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F86417003FF}") Then
' Uninstall Java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F86417003FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F83217004FF}") Then
' Uninstall java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F83217004FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F86417004FF}") Then
' Uninstall Java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F86417004FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F83217007FF}") Then
' Uninstall java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F83217007FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F86417007FF}") Then
' Uninstall Java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F86417007FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F83217009FF}") Then
' Uninstall java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F83217009FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F86417009FF}") Then
' Uninstall Java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F86417009FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F83217010FF}") Then
' Uninstall java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F83217103FF} /norestart /qn",1,True
End If

If objProducts.Exists("{26A24AE4-039D-4CA4-87B4-2F86417010FF}") Then
' Uninstall Java
objShell.Run "msiexec /x {26A24AE4-039D-4CA4-87B4-2F86417010FF} /norestart /qn",1,True
End If



If someone wants to uninstall all versions of Java from machines , Please try

http://ivan.dretvic.com/2011/02/who-hates-java-how-to-remove-all-java-installations-on-your-network/

this has a script that can do that.  We only tested this script for 32-bit Java and not 64-bit java. It works well.

Hope this helps

Comments

Popular posts from this blog

Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done

One of our servers was losing the Local Admin settings as we control them using GPO (restricted Groups) We were receiving the following event on this particular server : Event ID 4098 Application Event Log The computer 'Administrators (built-in)' preference item in the 'Servers Local Admins {odjd9DBD-22AF-48EA-ADF5-F42ADE4182hst}' Group Policy Object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done.' This error was suppressed. To fix the issue we deleted all the folders from the following location and rebooted the server C:\ProgramData\Microsoft\Group Policy\History Hope this helps.

DSS WSUS server fail to download Updates HTTP status 404: The requested URL does not exist on the server.

When managing a Downstream WSUS server , it may happen that when a patch is approved it tried to immediately download it form the source server (USS) Sometime we see errors in event viewer stating that the the download failed Event ID: 364 Content file download failed. Reason: HTTP status 404: The requested URL does not exist on the server. Source File: /Content/6E/72131F469F73C884B32124746BAFCA2C8E0A106E.cab Destination File: E:\WSUS\WsusContent\6E\72131F469F73C884B32124746BAFCA2C8E0A106E.cab Event ID 10032 The server is failing to download some updates. We also see following entries in softwaredistribution.log 2016-09-26 07:53:29.287 UTC Warning WsusService.3 ContentSyncAgent.ProcessBITSNotificationQueue ContentSyncAgent recieved Failure for Item: f52f0b8a-2b22-43cf-933e-af8de6b11eb6, Item fails 2016-09-26 07:53:29.287 UTC Info WsusService.3 ContentSyncAgent.ContentSyncSPFireStateMachineEvent ContentSyncAgent firing Event: FileDownloadFailed for Item: f5...

StoreFront 2.0 Propagate Changes Event ID 0 and 1 .There was no endpoint listening at net.tcp

When we add server to the Citrix storefront 2.0 server gropup , it may happen that the Propagate changes give us an error You will see the following events on the Primary StoreFront 2.0 Server Event Id 0: Error in retrieving synchronization information. Citrix.DeliveryServices.PowerShell.Command.Runner.Exceptions.PowerShellExecutionException: An error occured running the command: 'Get-DSClusterConfigurationUpdateState' ---> System.Management.Automation.ActionPreferenceStopException: Command execution stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: There was no endpoint listening at net.tcp://storefront02/Citrix/ConfigurationReplication that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. Event Id 1: Citrix.DeliveryServices.PowerShell.Command.Runner.Exceptions.PowerShellExecutionException, Citrix.Delive...