Posted On October 12, 2020

Remote Desktop Error Code 0x8000FFFF

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Remote Desktop Error Code 0x8000FFFF

Symptom:

Terminal-Services-ClientActiveXCore Event ID 226 on RDP Server:

rdpclient_ssl: an error was encountered when transitioning from TsSslStateDisconnected in response to TsSslEventInvalidState (error code 0x8000FFFF)

Error message from RDP client after 10+ seconds of displaying “Securing remote connection…”

Resolution:

Uninstall RDP Client

Get-AppxPackage -Name Microsoft.RemoteDesktop | Remove-AppxPackage -Verbose

Reinstall RDP Client

Get-AppxPackage -Name Microsoft.RemoteDesktop | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -Verbose}

Leave a Reply

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

Related Post

PowerShell: Install Apps On List of Computers

[string[]]$computers=@( 'SERVER01', 'SERVER02', 'SERVER03' ) [string]$chocoAppName='notepad2' [version]$minVersion='4.2.25.20160422' $results=[hashtable]@{} foreach ($computer in $computers){ $result=invoke-command -computer $computer…

Members of ‘Remote Desktop Users’ Not Included in the ‘Allow log on through Remote Desktop Services’ List

Error Message: To sign in remotely, you need the right to sign in through Remote…

How to Implement Local Administrator Password Solution (LAPS) on Windows

Overview LAPS or Local Administrator Password Management is a good solution for local administrator account…