Java 8 disable auto update
Hello,
I have problem with silent install of Java update 40 (Windows). I can not dissable auto update. I try this command line:
msiexec /i %~dp0jre1.8.0_40.msi JU=0 JAVAUPDATE=0 AUTOUPDATECHECK=0 RebootYesNo=No WEB_JAVA=1 /q
Now, I see tab Update on the "Java Control Panel". I need to disable this function.
Thanks for help.
0 Comments
[ + ] Show comments
Answers (5)
Please log in to answer
Posted by:
rmalohlava
9 years ago
Our solution was add this command lines to CMD file
IF NOT EXIST "C:\ProgramData\Oracle\Java" MKDIR "C:\ProgramData\Oracle\Java"
Copy "%~dp0java.settings.cfg" "C:\ProgramData\Oracle\Java" /Y
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /t REG_DWORD /d 0 /f /reg:32
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v EnableAutoUpdateCheck /t REG_DWORD /d 0 /f /reg:32
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v NotifyDownload /t REG_DWORD /d 0 /f /reg:32
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v NotifyInstall /t REG_DWORD /d 0 /f /reg:32
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /t REG_DWORD /d 0 /f /reg:64
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v EnableAutoUpdateCheck /t REG_DWORD /d 0 /f /reg:64
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v NotifyDownload /t REG_DWORD /d 0 /f /reg:64
reg add "HKEY_LOCAL_MACHINE\Software\JavaSoft\Java Update\Policy" /v NotifyInstall /t REG_DWORD /d 0 /f /reg:64
Posted by:
BHC-Austin
9 years ago
The command line looks right, but who's to say they didn't change something. You can also try setting this registry value:
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy\EnableJavaUpdate
to 0 (DWORD). We do this via GPO.
Comments:
-
Thx for answer. We have the registry EnableJavaUpdate set to 0 - rmalohlava 9 years ago
Posted by:
anonymous_9363
9 years ago
>If you can't or won't help, it is okay. I see your response on every thread even when you have nothing to contribute. If you don't want to help, don't post.
I think you'll find that people get a useful response from me (and others) when they a) provide as much information about the problem they're having, what they have tried so far to fix it, etc. and b) they have researched the problem for themselves.
I think you'll find that people get a useful response from me (and others) when they a) provide as much information about the problem they're having, what they have tried so far to fix it, etc. and b) they have researched the problem for themselves.
You, however, have failed in the second part, as the answer you require is available IN THIS FORUM!!! Had you used a search engine, you would've found it.
So, fine, I'll leave it to someone else to post the LMGTFY link.
Comments:
-
http://bfy.tw/8li - h2opolo25 9 years ago
Posted by:
anonymous_9363
9 years ago
This subject has been done to death, here and elsewhere. Search for 'deployment.properties'.
Comments:
-
Thanks for answer. Can you explain me more, please? Disable must be carried out through "deployment.properties"? Can you tell me name of properties? Thanks - rmalohlava 9 years ago
Posted by:
anonymous_9363
9 years ago
Are you somehow unable to use a search engine? I have no intention of repeating here information which is available elsewhere in abundance and able to be located in less than a second.
Comments:
-
If you can't or won't help, it is okay. I see your response on every thread even when you have nothing to contribute. If you don't want to help, don't post. - krisc4 9 years ago