2023-01-01|閱讀時間 ‧ 約 2 分鐘

Winserver_RDP_PortChange

#變更RDP Port避免被掃描或是暴力破解滲透
#設定key值,並將對應的rule 加入firewall
$NewPortNum = 13579
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "PortNumber" -Value $NewPortNum
New-NetFirewallRule -DisplayName "RDP_PORT_TCPIn" -Profile any -Direction Inbound -Action Allow -Protocol TCP -LocalPort $NewPortNum
New-NetFirewallRule -DisplayName "RDP_PORT_UDPIn" -Profile any -Direction Inbound -Action Allow -Protocol UDP -LocalPort $NewPortNum

#重啟套用變更
Restart-Computer -Force
分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.