How to completely stop autodownloading or prompting to update java versions?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nancy B

    How to completely stop autodownloading or prompting to update java versions?

    We are having an issue with people still getting prompted to update their java when they go to a website requiring a higher version of java. We need to control when updates happen. The admins have run the script below to remove the update tab. It stopped the updates that would normally run but does not stop the prompts. What does the JRE Autoupdate option in Java Control Panel do?

    Code:
    @echo off
    REG ADD "HKLM\SOFTWARE\JavaSoft\Java Plug-in\%JAVAVERSION%" /v HideSystemTrayIcon /t REG_DWORD /d 0×00000001 /f
    REG ADD "HKLM\SOFTWARE\JavaSoft\Java Update\Policy" /v EnableJavaUpdate /t REG_DWORD /d 0 /f
    REG ADD "HKLM\SOFTWARE\JavaSoft\Java Update\Policy" /v EnableAutoUpdateCheck /t REG_DWORD /d 0 /f
    REG ADD "HKLM\SOFTWARE\JavaSoft\Java Update\Policy" /v NotifyDownload /t REG_DWORD /d 0 /f
    REG ADD "HKLM\SOFTWARE\JavaSoft\Java Update\Policy" /v NotifyInstall /t REG_DWORD /d 0 /f
    ExIT
Working...