Thursday, September 18, 2014

windows - How to Kill Java Update?


I've got rid of the auto-update for Java by disabling it through the registry. Is there a way to stop people from manually updating Java? If someone tries to update Java through other means, is there a way I can stop it from running?


Answer



"%PROGRAMFILES%\Java\jre7\bin\jqs.exe" -unregister
msiexec /qn /x {4A03706F-666A-4037-7777-5F2748764D10}

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...