Posted On October 22, 2020

Application Blocked By Java Security

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Application Blocked By Java Security
Symptom:

When attempting to open a Java Web Application such as iDrac console, this error occurs: ‘Your security settings have blocked a self-signed application from running’

Resolution:

Run control.exe > Java Control Panel > Security > click on Edit Site List

Add the URLs of the sites to be on the exceptions list > click OK when done

Now retry running the .JNLP application


Next Problem:

As of 2020, the updated versions of Java Runtime are JRE8 or JRE9. Those have built-in security mitigation that would prevent successful connections to legacy Java Applets; hence, errors such as these would occur: ‘Connecting to Virtual Console Server. Connection Failed.’

The workaround:

Uninstall all Java Runtime versions higher than 7.0.75, and then install Jre7

Run appwiz.cpl > right-click on all Java Runtime version 8 or higher > Uninstall > run these commands in PowerShell:

# Install Chocolatey
if (!(Get-Command choco.exe -ErrorAction SilentlyContinue)) {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))}
choco uninstall javaruntime -y
choco install javaruntime --version=7.0.75 -y

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Search Windows Event Logs

# searchWindowsEventsLog.ps1 $computername=$env:computername $logType='Security' $eventId=4732 $daysBack=365 $limit=9999 $messageLike="*Remote Desktop Users*" function searchWindowsEvents{ param( $computername=$env:computername $logType='Security'…

How to Remove Windows Junk via GPO – Chat, Weather, Hello, Shopping

Download and install Administrative Templates (.admx) Windows 11 October 2021 Update [21H2] - https:// www.microsoft.com/en-us/download/details.aspx?id=103507…

Great GPL Windows Admin Tools

1. Wireshark 2. amanda.org (backup server) 3. mailarchiva.com (mail backup) 4. http://rbac.codeplex.com (remote admin for Exchange servers) 5. Core Configurator, ,…