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

PowerShell: Find Windows RDS Roles and Their Licensing Servers

# Get TS Licensing Servers (Enterprise or AD Registered) $termLicenseServers=Get-ADGroupMember -Identity "Terminal Server License Servers"…

How to recreate user profile on Windows 7

Method 1: You can do it with the User Profiles dialog in System Properties: Log…

Configure Remote Servers to Download Contents from Microsoft Directly instead of WSUS

Log onto Local Server >> Group Policy >> Computer Configuration >> Administrative Templates >> System…