Java turn off automatic updates
How to turn off java automatic update on nsis?
Archive: Java turn off automatic updates
Java turn off automatic updates
How to turn off java automatic update on nsis?
You can enable/disable it in the registry:
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Update\Policy
Value Name: "EnableJavaUpdate"
Data Type: DWORD
Value Data: 0 = Disabled, 1 = Enabled
Originally posted by Vankov in other thread (by accident)1) Because it's a DWORD value, you have to use WriteRegDWORD.
WriteRegStr HKEY_LOCAL_MACHINE "\SOFTWARE\JavaSoft\Java Update\Policy" 'EnableJavaUpdate = 0'
and fails...
WriteRegDWORD HKEY_LOCAL_MACHINE "SOFTWARE\JavaSoft\Java Update\Policy" 'EnableJavaUpdate' 0
10x!It is work now! :)