Did a google search for this and your blog entry from a year ago was the 2nd hit.
Thanks for posting this.... I was ready for a long hunt. I just had to restore my work PC all last night, was in the office all day and never did enable remote desktop.
Save this code to a text file and name it EnableRemoteConnect.vbs
==== CODE ====
'==========================================
' NAME: EnableRemoteConnect.vbs
' AUTHOR: Kevin Dondrea, Support
' DATE : 9/16/2009
' COMMENT: Enables Remote Desktop Connect feature. It does not add a user with
' permissions who can login.
'==========================================
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")
'==========================================
' NAME: DisableRemoteConnect.vbs
' AUTHOR: Kevin Dondrea, Support
' DATE : 9/16/2009
' COMMENT: Enables Remote Desktop Connect feature. It does not add a user with
' permissions who can login.
'==========================================
Const HKEY_LOCAL_MACHINE = &H80000002
strComputer = "."
Set objReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _
strComputer & "\root\default:StdRegProv")