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: Hyper-V Servers Capacity Report

Current Version: # HyperVCapacityReport.ps1 # Version 0.0.2 # Report parameters $workingDirectory='C:\scripts\googleSheets' $selectFields='node,model,os,cores,cpuUtilizationPercent,ramGb,ramUsedPercent' $domainObjects=@( @{domain='intranet.kimconnect.com';dc='lax-dc02.intranet.kimconnect.com';username='intranet\clusterReport';password=$env:clusterReportPass} @{domain='intranet.dragoncoin.com';dc='lax-dc02.intranet.dragoncoin.com';username='intranet\clusterReport';password=$env:clusterReportPass}…

Indications that Chocolatey is locked down

# System's version is less than vendor's current (Chocolatey v0.10.15) 0+000+00[LAX-WEB005]: PS C:\Users\testadmin\Documents> choco source…

On Premise Exchange to Office 365 Migration Using Method: Asynchronous PST Export & Import

Assumptions: 1. Hybrid Exchange Migration and Stage Migration methods have been considered and rejected2. Active…