Berikut ini adalah panduan untuk merubah RDP (Remote Desktop Protocol) port dari powershell.
Buka powershell anda sebagai admin
Kemudian eksekusi command di bawah ini. Ganti xxxx dengan port yang anda inginkan.
$portvalue = xxxx 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 |
Jika sudah maka di Enter hingga muncul port RDP sudah berubah.
Tambahan :
Untuk alasan keamanan, mohon jangan ganti port RDP anda ke default 3389 karena rawan brute force attack
Perubahan RDP port ini agar sempurna membutuhkan proses reboot
Command di atas hanya bisa berjalan di Powershell saja