Java Runtime Environment 6 Update 14 - Disable updates
Hi,
I am unable to disable updates in this application. I tried adding below registry keys in MST
[HKEY_LOCAL_MACHINE\Software\JavaSoft\Policy]
"EnableAutoUpdateCheck"=hex:0
"EnableJavaUpdate"=hex:0
"Frequency"=hex:10,d0,00,0
"NotifyDownload"=hex:0
"NotifyInstall"=hex:0
"UpdateSchedule"=hex:0
and adding properties 1. AUTOUPDATECHECK = 0, IEXPLORER = 1,JAVAUPDATE = 0, JU=0, MOZILLA = 1,SYSTRAY = 0 still I see "Check for Updates Automatically" option checked and "Update" tab available. Can anyone please let me know how to uncheck this option?
Many Thanks in Advance.
0 Comments
[ + ] Show comments
Answers (11)
Please log in to answer
Posted by:
zipsantro
15 years ago
Posted by:
rakesh.kumar
15 years ago
Posted by:
Manu77
15 years ago
Posted by:
anonymous_9363
15 years ago
Posted by:
lam2070
15 years ago
Manu77, you are writing the keys at the wrong place. See the location and key of my work below.
[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy]
"EnableJavaUpdate"=dword:00000000
"EnableAutoUpdateCheck"=dword:00000000
"NotifyDownload"=dword:00000001
"NotifyInstall"=dword:00000001
"Frequency"=dword:01020000
"UpdateSchedule"=dword:0000000e
[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy]
"EnableJavaUpdate"=dword:00000000
"EnableAutoUpdateCheck"=dword:00000000
"NotifyDownload"=dword:00000001
"NotifyInstall"=dword:00000001
"Frequency"=dword:01020000
"UpdateSchedule"=dword:0000000e
Posted by:
turbokitty
15 years ago
Posted by:
Manu77
15 years ago
Posted by:
santosh.gornal@gmail
15 years ago
Hi ALL,
This is my first java application
I am trying with jre1.6.0_15 by creating mst.
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy
EnableJavaUpdate = thru registry.
and even set values JAVAUPDATE=0,AUTOUPDATECHECK=0;IEXPLORER=0,SYSTRAY=0;JU=0;
still its not able to disable UPDATE Tab Disable or disabling checkbox and also tried
with CA
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\JavaSoft\Java Update\Policy"
strValueName = "EnableAutoUpdateCheck"
dwValue = 0
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue
strValueName = "EnableJavaUpdate"
dwValue = 0
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue
By Placing it in ALL Custom action ->Call vb script from embedded code -Normal Execute defered system/user context syncronous exit code.
thanks in Advance
This is my first java application
I am trying with jre1.6.0_15 by creating mst.
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy
EnableJavaUpdate = thru registry.
and even set values JAVAUPDATE=0,AUTOUPDATECHECK=0;IEXPLORER=0,SYSTRAY=0;JU=0;
still its not able to disable UPDATE Tab Disable or disabling checkbox and also tried
with CA
strComputer = "."
Set StdOut = WScript.StdOut
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
strComputer & "\root\default:StdRegProv")
strKeyPath = "SOFTWARE\JavaSoft\Java Update\Policy"
strValueName = "EnableAutoUpdateCheck"
dwValue = 0
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue
strValueName = "EnableJavaUpdate"
dwValue = 0
oReg.SetDWORDValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,dwValue
By Placing it in ALL Custom action ->Call vb script from embedded code -Normal Execute defered system/user context syncronous exit code.
thanks in Advance
Posted by:
Cerbeos
12 years ago
This is what I deploy to all of the machines in our environment and no one gets any notifications of updates or anything...
I add both x86 and x64 changes for good measure!!!
: Disable Java Updates
: (x64)
reg add "HKLM\Software\Wow6432Node\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /d "00000000" /t REG_DWORD /f
: (x86)
reg add "HKLM\Software\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /d "00000000" /t REG_DWORD /f
I add both x86 and x64 changes for good measure!!!
: Disable Java Updates
: (x64)
reg add "HKLM\Software\Wow6432Node\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /d "00000000" /t REG_DWORD /f
: (x86)
reg add "HKLM\Software\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /d "00000000" /t REG_DWORD /f
Comments:
-
Thanks Cerbeos saved my day......... - cvkr8456 12 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.