Posted On May 5, 2021

How to Fix Remote Desktop Blue Screen on Windows 2019

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to Fix Remote Desktop Blue Screen on Windows 2019

Problem: when an RDP session is idle for an extended period of time, that session becomes stale and even blue screens indefinitely. Often, a workaround of ‘kicking’ that user’s session is required for re-connections. This appears to occur more often between Windows 10 clients and Windows Server 2019.

Resolution:

$registryPath='REGISTRY::HKLM\software\policies\microsoft\windows nt\Terminal Services\Client'
$regKeyname='fClientDisableUDP'
$regValue=1
$regValueType='DWORD'

New-ItemProperty -Path $registryPath -Name $regKeyname -Value $regValue -PropertyType $regValueType -Force

If that doesn’t work, I’ve advised the user to install the new Microsoft alternative RDP client: https:// www.microsoft.com/en-us/p/microsoft-remote-desktop/9wzdncrfj3ps. Personally, I use mRemoteNG and have not experienced this issue since.

Leave a Reply

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

Related Post

Remote Desktop: Broken Domain Trust Relationship Between Workstation an Primary Domain Controller

Symptom Remote desktop initiation toward a certain server would result in an error message with…

Function to Install Application and Its PowerShell Wrapper

# This function checks on whether a particular app has a corresponding PowerShell wrapper. If…

SMB 1 vs SMB2 Compatibility Issues

Cause: "SMB 1.0 is deprecated. Once this is removed, systems running Windows XP or Windows…