How to Get Rid of Java Update Notifications

Method 1 of 3:

Using the Java Control Panel

  1. How to Get Rid of Java Update Notifications Picture 1
    Open the Java Control Panel. To do so:
    1. Windows - Open Start, type in "Configure Java", and click the Java icon.
    2. Mac - Click the Apple icon, click System Preferences, and click the Java icon.
  2. How to Get Rid of Java Update Notifications Picture 2
    Click the Update tab. It's at the top of the Java Control Panel window.
  3. How to Get Rid of Java Update Notifications Picture 3
    Uncheck the "Check for Updates Automatically" box. It's in the middle of the window.
  4. How to Get Rid of Java Update Notifications Picture 4
    Click Do Not Check when prompted. Doing so will prevent Java from checking for updates.
  5. How to Get Rid of Java Update Notifications Picture 5
    Click OK. It's at the bottom of the window. Your preferences should be saved.
Method 2 of 3:

Editing the Registry on Windows

  1. How to Get Rid of Java Update Notifications Picture 6
    Determine whether your system is 32- or 64-bit. To do so:
    1. Right-click the This PC (or My Computer) icon.
    2. Click Properties.
    3. Look for the number to the right of the "System type" heading.
  2. How to Get Rid of Java Update Notifications Picture 7
    Open the Start menu. Either press the Win key or click the Windows logo in the bottom-left corner of the screen.
  3. How to Get Rid of Java Update Notifications Picture 8
    Type regedit into Start. Doing so will bring up the Registry Editor icon, which resembles a cluster of blue blocks, in the Start window.
  4. How to Get Rid of Java Update Notifications Picture 9
    Click the Regedit icon. This will open the Windows Registry Editor.
  5. How to Get Rid of Java Update Notifications Picture 10
    Click
    How to Get Rid of Java Update Notifications Picture 11
    left of the "HKEY_LOCAL_MACHINE" folder. It's in the top-left corner of the Registry Editor window. Doing so will display any folders that are in the "HKEY_LOCAL_MACHINE" folder below it.
  6. How to Get Rid of Java Update Notifications Picture 12
    Click
    How to Get Rid of Java Update Notifications Picture 13
    left of the "SOFTWARE" folder. This option is below the "HKEY_LOCAL_MACHINE" folder.
  7. How to Get Rid of Java Update Notifications Picture 14
    Click
    How to Get Rid of Java Update Notifications Picture 15
    left of the "Wow6432Node" folder. Skip this step if you're on a 32-bit bit system.
  8. How to Get Rid of Java Update Notifications Picture 16
    Click
    How to Get Rid of Java Update Notifications Picture 17
    left of the "Java Soft" folder.
  9. How to Get Rid of Java Update Notifications Picture 18
    Click
    How to Get Rid of Java Update Notifications Picture 19
    left of the "Java Update" folder.
  10. How to Get Rid of Java Update Notifications Picture 20
    Click the "Policy" folder. Doing so will display its contents in the pane on the right side of the window.
  11. How to Get Rid of Java Update Notifications Picture 21
    Double-click the "Enable Java Update" file. It should be on the right side of the window.
  12. How to Get Rid of Java Update Notifications Picture 22
    Type "0" into the file. This will change the file's value of "1", which allows updates, to "0", which blocks updates.
  13. How to Get Rid of Java Update Notifications Picture 23
    Click OK. This will disable the Java update prompt that occurs while your computer is already running.
  14. How to Get Rid of Java Update Notifications Picture 24
    Press Ctrl+ Shift+Esc. You'll find all three of these keys on the left side of the keyboard. Pressing them opens the Windows Task Manager.
  15. How to Get Rid of Java Update Notifications Picture 25
    Click the Startup tab. It's near the top of the Task Manager window.
  16. How to Get Rid of Java Update Notifications Picture 26
    Locate and click jucheck. This file is the Java update prompt that runs whenever you turn on your PC.
  17. How to Get Rid of Java Update Notifications Picture 27
    Click Disable. It's in the bottom-right corner of the Task Manager window. This will prevent the Java update from running at startup regardless of your settings.
Method 3 of 3:

Using the Terminal on Mac

  1. How to Get Rid of Java Update Notifications Picture 28
    Open Spotlight. To do so, click the magnifying glass icon in the top-right section of your Mac's menu bar.
    1. If you aren't using an account with administrator privileges, you might not be able to disable the Java update.
  2. How to Get Rid of Java Update Notifications Picture 29
    Type in Terminal. Typing "Terminal" into the Spotlight text field will bring up a black box; this is the Terminal icon.
  3. How to Get Rid of Java Update Notifications Picture 30
    Click the Terminal icon. Doing so will open Terminal.
  4. How to Get Rid of Java Update Notifications Picture 31
    Enter the Java Update disable command. The command is as follows: sudo defaults write /Library/Preferences/com.oracle.java.Java-Updater JavaAutoUpdateEnabled -bool false.
  5. How to Get Rid of Java Update Notifications Picture 32
    Press Return. This will run the command. The Java update should no longer appear when you start your Mac.
4.4 ★ | 5 Vote

May be interested

  • How to Create a Java Class in Netbeans to Compute the Area of a Triangle Using Heron's FormulaPhoto of How to Create a Java Class in Netbeans to Compute the Area of a Triangle Using Heron's Formula
    this guide will walk you through the steps need to compute the area of a triangle using the heron's formula in netbeans. you may use any ide you like, but this tutorial will be using netbeans and oracle's java jdk 8u101. download and...
  • How to Get Input from a User in JavaPhoto of How to Get Input from a User in Java
    when programming in java or any other language, you will most likely need to use input information from a user. java provides many different methods for getting in user information, but the most common and perhaps easiest to implement...
  • How to Set Java HomePhoto of How to Set Java Home
    do you want to set java home? the variable java home, generally written as java_home, is set to the install path of java. learning how to set java_home in windows and linux isn't hard to do. assuming that the path for the java development...
  • How to Fix JavaPhoto of How to Fix Java
    java is a computing platform that allows you to play games and view videos on your computer. you can tell that your computer is having problems with java if you see java errors appear when you try to run a program or visit a website that...
  • How to Create JAR FilePhoto of How to Create JAR File
    this wikihow teaches you how to create a java compressed folder, also known as a jar file, using a free java program called eclipse. you can do this on both windows and mac computers. make sure that you have the java developer's kit...
  • How to Close a Window in JavaPhoto of How to Close a Window in Java
    this article will show you how to close a window in java. closing a window is much easier using swing's jframe, but it's also doable using awt's frame. obtain an instance of a jframe, or create a new one. set default close operation....