- Not a big fan of editing the registry of servers
- Remote Registry service was not enabled on this particular machine
Luckily, I found the following at msgoodies.blogspot.com:
From Win2k3:
wmic /node:"Computer Name (FQDN)" /USER:"username" RDTOGGLE WHERE ServerName="Computer Name (FQDN)" CALL SetAllowTSConnections 1
From WinXP:
wmic /node:"Computer Name (FQDN)" /USER:"username" PATH win32_terminalservicesetting WHERE (__Class!="") CALL SetAllowTSConnections 1
Enjoy!
--andrew