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

How to Know if Your Colleague is a God (Like Thor)?

Sometimes, I sit back and watch the mind games in politics, companies, churches, and even…

Reference Entries of Office 365 records for Internal & External DNS

General Office 365 email setup check list: MS requires that each smart-host configuration or send…

ADFS: Adding a Relying Party Trust

The following instructions assume the task of creating a authentication endpoint to allow external users…