系统相关
首页 > 系统相关> > 更改Windows系统远程桌面的端口

更改Windows系统远程桌面的端口

作者:互联网

查看当前端口

在PowerShell中执行下面的命令查看当前远程桌面侦听端口,没改过的话系统默认是3389端口

Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber"

更改端口(以管理员权限打开PowerShell后操作)

更改远程桌面侦听端口,例如更改为3390

Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber" -Value 3390

将3390端口放行规则添加至防火墙

New-NetFirewallRule -DisplayName 'RDPPORTLatest' -Profile 'Public' -Direction Inbound -Action Allow -Protocol TCP -LocalPort 3390
New-NetFirewallRule -DisplayName 'RDPPORTLatest' -Profile 'Public' -Direction Inbound -Action Allow -Protocol UDP -LocalPort 3390

标签:3390,CurrentControlSet,DisplayName,更改,Windows,端口,远程桌面
来源: https://blog.csdn.net/qq_36380420/article/details/116460411