Tuesday, October 19, 2010

Enable Remote desktop remotely

Hi Friends,

If u would to like to enable remote desktop remotely. u need to change the registry settings of the remote computer.

Change the registry settings of the remote Computer

1. Open Registry editor then --> go to file menu
2. click connect network registry -- then type remote computer IP address or name then click ok.
3. now u need to go HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server, in the right panel, seelct fDenyTSConnection (REG_DWORD). Change the value data from 1 (Remote Desktop disabled) to 0 (Remote Desktop enabled).
4. now u able to access the computer remotely.. cheers...

Active Desktop Issue.

Hi friends,

if u face the active desktop issue. if u not able to change the desktop background. copy the below code and save it as .vbs extension and execute it.
_______________________________________________________________________________________
HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set objReg = GetObject("winmgmts:\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components"
strValue = "0"
ValueName = "DeskHtmlVersion"
objReg.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, ValueName, strValue
_____________________________________________________________________________________

if u execute above code. the desktop background will be change..