bannerAds
Global
language language

Product

Doc

Support

Menu 

SiliCloud Help Document Center

search

Popular search terms

Windows 远程桌面 端口修改方法

Update time 2023-08-04 08:58  Version v1.6
I want feedback 
Collect My collection

适用的Windows版本:

Windows Server 2022, Windows 10, Windows 8.1, Windows 8, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2008 R2

基于软件:

Powershell

正文:

  1. 使用以下命令,查询 目前RDP正在使用的端口号
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber"
  1. 通过以下命令,可以修改RDP 端口号,并增加防火墙放行规则
$portvalue = 33990

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 

以上,就是本篇的全部内容。

希望对您有帮助。

Do you have any suggestions for this document?

Your rating for this document