image-1

How to Enable or Disable RDP NLA from PowerShell Windows Server 2016/2019/2022

By default, you might find RDP firewall rules disabled, which prevent RDP connections to the server. To enable preset firewall rules of RemoteDesktop, use the following PowerShell command: Enable-NetFirewallRule -DisplayGroup ‘Remote Desktop’ or from CMD, append powershell.exe in the beginning: powershell.exe Enable-NetFirewallRule -DisplayGroup ‘Remote Desktop’ To disable RDP Network Level Authentication (NLA), use the following Read More