8

Many times i am trying to connect to another machine, but realize when I'm connecting that Remote Desktop is not enabled on the target computer.

How does one enable remote destktop on the target machine, remotley?

Omar Shahine
  • 3,747
  • 3
  • 26
  • 27

6 Answers6

3

IntelliAdmin has a free utility for this:

http://www.intelliadmin.com/blog/2006/06/remotely-enable-remote-desktop.html

EDIT - I cant remember if you need to open a firewall port or not to use this. If so, I use pstools to disable firewall on remote machines with the command prompt. Then run the tool. Then enable the firewall.

The psexec command to disable/enable firewall is: netsh firewall set opmode mode = disable

cop1152
  • 2,656
  • 3
  • 21
  • 32
3

If the machine is in a domain you can use group policies to enable remote desktop.

If you can connect with remote registry, check this out: http://www.petri.co.il/remotely_enable_remote_desktop_on_windows_server_2003.htm

You might be able to use psexec from sysinternals to run some script that will enable rdp.

(I use the first alternative)

Bård
  • 767
  • 1
  • 6
  • 12
2

Check this hack from O'Reilly posted back in 2004.

http://oreilly.com/windows/archive/server-hacks-remote-desktop.html

Basically, you just remote log into target computer's registry and change the settings there.

Hope it helps.

kentchen
  • 754
  • 5
  • 9
2

A Long Time Ago, In a Galaxy Far Away, I wrote this script as part of an automated Windows Server 2003 deployment script.

rd.reg:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server]
"fDenyTSConnections"=dword:00000000

Run the command (this was from a batch script running locally on the machine, to a mapped z drive):

c:\windows\regedit /s z:\netinst\rd.reg

If using AD you could push this out using Group Policy.

Dave Drager
  • 8,375
  • 29
  • 45
  • There's already an "Adminsitrative Template" setting for this - Windows Components / Terminal Services / Allow users to connect remotely using Terminal Services – Evan Anderson Jun 25 '09 at 18:18
  • This was a pretty unique situation - we only had the ability to run batch scripts and this was a stand-alone server in a datacenter. But still, good to know this info. – Dave Drager Jun 25 '09 at 18:32
1

Use WMI and the "[SetAllowTSConnections][1]" Method of the "Win32_TerminalServiceSetting" Class!

From a Windows 2003 command line, you can use the following from the command line:

wmic /node:TargetName RDToggle where ServerName="TargetName" call SetAllowTSConnections 1

[1]: http://msdn.microsoft.com/en-us/library/aa383644(VS.85).aspx SetAllowTSConnections

Benoit
  • 3,549
  • 1
  • 19
  • 17
0

Change the registry value remotely? Might need to reboot though.

xeon
  • 3,806
  • 18
  • 18