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: 1-Liner to Install Windows Photo Viewer for Windows 10

I've thought that Windows Photo Viewer is a nicely optimized and lightweight program to preview…

How to Change iTunes Backup Location of Storage In Windows

Make a directory junction after moving the backup storage location robocopy "C:\Users\%USERNAME%\AppData\Roaming\Apple Computer\MobileSync" "D:\iphone_backups" /E…

MS Exchange 2010: Mailbox Repair

PowerShell snippet to initiate repair # set user alias or email addresses here:$userAliases="user1","user2"foreach ($user in…