You can download RDP 5.2 @
Remote Desktop Connection for Windows Server 2003 [5.2.3790]
RDP 5.2 has an auto-reconnect option that is very useful over a bad connection.
But one issue I've always had with it is that even after installing RDP 5.2 on XP, when you type "MSTSC" at a command prompt (which I very often do) RDP 5.1 is loaded. This is because the RDP 5.2 installer places it's files @
"C:\Program Files\Remote Desktop\mstsc.exe"
while the original RDP 5.1 files are still in your path @
"%WinDir%\mstsc.exe"
Naturally the RDP 5.1 client is run in this case.
So I fixed this annoyance with this little script.
CODE
REM Install the RDP client - Bare interface, no cancel button, no modal dialog at finish
C:\Temp\Apps\RDP.Client\Setup.Exe /S /V"/qb-! /L*v C:\Temp\RDP_Client.Log"
REM Create a hardlink in the system folder so that typing "MSTSC" at a command prompt will open the RDP 5.2 client.
fsutil hardlink create %WinDir%\mstsc.exe "C:\Program Files\Remote Desktop\mstsc.exe"
fsutil hardlink create %WinDir%\mstscax.dll "C:\Program Files\Remote Desktop\mstscax.dll"
C:\Temp\Apps\RDP.Client\Setup.Exe /S /V"/qb-! /L*v C:\Temp\RDP_Client.Log"
REM Create a hardlink in the system folder so that typing "MSTSC" at a command prompt will open the RDP 5.2 client.
fsutil hardlink create %WinDir%\mstsc.exe "C:\Program Files\Remote Desktop\mstsc.exe"
fsutil hardlink create %WinDir%\mstscax.dll "C:\Program Files\Remote Desktop\mstscax.dll"
Resources:
Remote Desktop Connection for Windows Server 2003 [5.2.3790]
fsutil
