By defauly Windows XP Remote Desktop port number is 3389
Some reason you decided to change the port number for RDP (but this has security implications
ie do you want a remote desktop session open on port 3350 on your home or corporate PC)
If you want to change the port number
WARNING: If you use Registry Editor incorrectly, you may cause serious problems that may require you to reinstall your operating system. take a backup of your registry before doing any changes
You can use the Remote Desktop feature in Windows XP Professional to connect to your computer from another, remote computer.
WARNING: The Remote Assistance feature in Windows XP may not work properly if you change the listening port. To change the port that Remote Desktop listens on
Start>run type regedit click ok
Navigate the following key in the registry from left pane
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp\PortNumber
On the Edit menu, click Modify, click Decimal, type the new port number, and then click OK.
close Registry Editor.
NOTE: When you try to connect to this computer by using the Remote Desktop connection, you must type the new port.
You need to make sure your firewall is opened for this port.
Incoming search terms:
- change rdp port xp (30)
- change rdp port windows xp (21)
- windows remote desktop port number (9)
- xp remote desktop port change (8)
- xp change remote desktop port (8)
- xp change rdp port (8)
- windows xp change rdp port (7)
- change remote desktop port windows xp (7)
- windows xp change remote desktop port (6)
- windows xp remote desktop port (6)
Is it also possible to restricted RDP access via one of the server IP address (where a server has multiple IP addresses)
@ECHO OFF
set PORTNUMBER=
set /P INPUT=Type PORTNUMBER: %=%
echo Your Port Number was: %INPUT%
reg add “HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp” /v PortNumber /t REG_DWORD /d %INPUT% /f
netsh advfirewall firewall add rule name=”RDP-2″ dir=in action=allow protocol=TCP localport=%INPUT%
pause