Posted On October 26, 2020

Remote Desktop Connection An internal error has occurred.

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Remote Desktop Connection An internal error has occurred.
RDP Error Message:

 

 

Resolution:

Method 1: Create and apply a self signed certificate on the server

$fqdn=$env:computername+$(if($env:USERDNSDOMAIN){'.'+$env:USERDNSDOMAIN})
$newCertificate=New-SelfSignedCertificate -certstorelocation cert:\localmachine\my -dnsname $fqdn
$thumbPrint=$newCertificate.Thumbprint
wmic /namespace:\\root\CIMV2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash=$thumbPrint

Method 2: install an alternate RDP client

Method 3: fix firewall issues

Leave a Reply

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

Related Post

OpenProject Installation on CentOS 7

Docker Implementation:   # Create database on existing SQL Server (not being used) #CREATE DATABASE…

Symantec Antivirus

Issue: Symantec Embedded Database stuck on "Starting" status   Resolution: a. Backup License Files b.…

Use CMD to Kill All Instances of a Program / Process

This can be invoked in an un-elevated session. The command is: taskkill /F /IM <PROGRAM.EXE>…