Remote Desktop and copying files

A short script that makes the Windows clipboard allow copying files between an RDP session and the host.

REM Needed only for Windows XP - this enables services needed
REM to copy and paste files between RDP sessions
sc config "NetDDEdsdm" start= auto
sc start "NetDDEdsdm"
sc config "NetDDE" start= auto
sc start "NetDDE"
sc config "ClipSrv" start= auto
sc start "ClipSrv"