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 Check NTFS Effective Permission Access of a User

Right-click on the Folder > Properties > Security tab > Advanced > Effective Access tab…

How to Set PowerShell Window and Prompt Title or Label

Have you ever wondered about changing the boring PS C:\Windows\system32> whenever a new window is…

How to transport Outlook contacts

Export your contacts from Outlook: In Outlook, on the File menu, click Import and Export.…