Disable UDP for RDP
Disable UDP for RDP using a single PowerShell command.
Run the following elevated PowerShell command (as Administrator):
Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client" -Name "fClientDisableUDP" -Value 1 -Type DWORD -ForceVerification:
Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client" -Name "fClientDisableUDP"fClientDisableUDP : 1Apply Changes:
Last updated