How to Get Rid of Java Update Notifications
Method 1 of 3:
Using the Java Control Panel
- Open the Java Control Panel. To do so:
- Windows - Open Start, type in "Configure Java", and click the Java icon.
- Mac - Click the Apple icon, click System Preferences, and click the Java icon.
- Click the Update tab. It's at the top of the Java Control Panel window.
- Uncheck the "Check for Updates Automatically" box. It's in the middle of the window.
- Click Do Not Check when prompted. Doing so will prevent Java from checking for updates.
- Click OK. It's at the bottom of the window. Your preferences should be saved.
Method 2 of 3:
Editing the Registry on Windows
- Determine whether your system is 32- or 64-bit. To do so:
- Right-click the This PC (or My Computer) icon.
- Click Properties.
- Look for the number to the right of the "System type" heading.
- Open the Start menu. Either press the ⊞ Win key or click the Windows logo in the bottom-left corner of the screen.
- Type regedit into Start. Doing so will bring up the Registry Editor icon, which resembles a cluster of blue blocks, in the Start window.
- Click the Regedit icon. This will open the Windows Registry Editor.
- Click
- Click
- Click
- Click
- Click
- Click the "Policy" folder. Doing so will display its contents in the pane on the right side of the window.
- Double-click the "Enable Java Update" file. It should be on the right side of the window.
- Type "0" into the file. This will change the file's value of "1", which allows updates, to "0", which blocks updates.
- Click OK. This will disable the Java update prompt that occurs while your computer is already running.
- 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.
- Click the Startup tab. It's near the top of the Task Manager window.
- Locate and click jucheck. This file is the Java update prompt that runs whenever you turn on your PC.
- 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
- Open Spotlight. To do so, click the magnifying glass icon in the top-right section of your Mac's menu bar.
- If you aren't using an account with administrator privileges, you might not be able to disable the Java update.
- Type in Terminal. Typing "Terminal" into the Spotlight text field will bring up a black box; this is the Terminal icon.
- Click the Terminal icon. Doing so will open Terminal.
- Enter the Java Update disable command. The command is as follows:
sudo defaults write /Library/Preferences/com.oracle.java.Java-Updater JavaAutoUpdateEnabled -bool false
. - Press ⏎ Return. This will run the command. The Java update should no longer appear when you start your Mac.
4.4 ★ | 5 Vote
You should read it
May be interested
- How to Create a Java Class in Netbeans to Compute the Area of a Triangle Using Heron's Formulathis 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 Javawhen 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 Homedo 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 Javajava 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 Filethis 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 Javathis 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....