Site icon WinCert

Disable “Java version is out of date” message

internet-explorer box,processes

If you have received the following message on your system, we recommend that you update your Java sofware version.

“Your Java version is out of date”

But, if for some reason, you cannot update your Java version, you can disable this popup message by entering the following lines in your deployment.properties file that is stored in: C:\Windows\Sun\Java\Deployment

deployment.expiration.check.enabled=false
deployment.expiration.check.enabled.locked

After this we have to add the followin environment variable.

Open Command Prompt and type the following

setx deployment.expiration.check.enabled false /m

If you do not have Deployment.config and Deployment.properties files in C:\Windows\Sun\Java\Deployment folder here’s what you’ll have to do:

Create Deployment.config file and add the following lines in it:

deployment.system.config=file\:C\:/Windows/Sun/Java/Deployment/deployment.properties
deployment.system.config.mandatory=true

Now create the Deployment.properties and add the following lines in it:

deployment.javaws.autodownload=never
deployment.javaws.autodownload.locked
deployment.expiration.check.enabled=false
deployment.expiration.check.enabled.locked
deployment.expiration.decision=never
deployment.expiration.decision.locked
deployment.expiration.decision.suppression=true
deployment.expiration.decision.suppression.locked

Set environment variable by typing the following line in command prompt:

setx deployment.expiration.check.enabled false /m

Hope this helps.

Exit mobile version