Tag: Quick Tips

Fix RDP sessions freezing or black screen at logonFix RDP sessions freezing or black screen at logon

0 Comment

Several causes for this issue exist, most famously the Windows 10 version 1809 & Windows 11 version 22H2 feature updates. Fix 1 This disables use of UDP on the client, forcing a TCP connection. In the client’s registry, go toHKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient Create a new DWORD value named fClientDisableUDP with data of 1 Reboot the […]

Change a network category in WindowsChange a network category in Windows

0 Comment

A network category can be important for several things, but usually for Windows firewall rules. To get the current network and its category, run the following in PowerShell:  Get-NetConnectionProfile  To change the location category, run this in an elevated PowerShell session using the network name returned from Get-NetConnectionProfile:  Set-NetConnectionProfile -Name <network name> -NetworkCategory [Public | […]