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

An authentication error has occurred (Code: 0x80004005)

Symptom: [Window Title]Remote Desktop Connection[Content]An authentication error has occurred (Code: 0x80004005).Remote computer: 192.168.1.54[OK] Cause: This…

PowerShell: Create Registry Keys within Windows Localhost

# createRegKey.ps1 $regKeys=@( @{ hive='REGISTRY::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome'; name='ChromeCleanupEnabled'; value=0 } @{ hive='REGISTRY::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome'; name='ChromeCleanupReportingEnabled'; value=0 } ) function…

PowerShell: Checking Duplicating Identifiers Among ADFS Relying Party Trusts

function getDuplicatingIfd{ write-host "Checking each relying party trust for any duplicates of identifiers..." $trusts=Get-AdfsRelyingPartyTrust $allTrustNames=$trusts.Name…