51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Windows 更改mstsc远程桌面端口

文章介绍:快速更改Windows远程桌面端口号 参考链接

一、查看当前端口号 {#一-查看当前端口号}

1.1、打开CMD {#1-1-打开CMD}

Windows+X选择:Windows PowerShell(管理员)(A)

yydy_2024-02-26_15-43-17

1.2、查看命令 {#1-2-查看命令}

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

yydy_2024-02-26_15-42-54

二、更改端口号 {#二-更改端口号}

更改远程桌面端口为:5200

$portvalue = 5200

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

`New-NetFirewallRule -DisplayName 'RDPPORTLatest-TCP-In' -Profile 'Public' -Direction Inbound -Action Allow -Protocol TCP -LocalPort $portvalue
New-NetFirewallRule -DisplayName 'RDPPORTLatest-UDP-In' -Profile 'Public' -Direction Inbound -Action Allow -Protocol UDP -LocalPort $portvalue
`

yydy_2024-02-26_15-48-15

三、查看端口号 {#三-查看端口号}

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

yydy_2024-02-26_15-48-41

四、配置生效 {#四-配置生效}

net stop TermService
net start TermService

yydy_2024-02-26_16-05-00

赞(2)
未经允许不得转载:工具盒子 » Windows 更改mstsc远程桌面端口