以下方法适合windows全部版本
用powershell执行:
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber" -Value 13389
New-NetFirewallRule -DisplayName 'RDPPORTLatest' -Profile 'Public' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 13389
第一行,将远程端口修改为13389
第二行,在防火墙放通13389端口
修改完成后,重启即可
文章评论