远程启用计算机上的远程桌面


Answers:


2

看看2004年发布的O'Reilly的此骇客。

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

基本上,您只需远程登录到目标计算机的注册表并在其中更改设置。

希望能帮助到你。


有趣的是,但它有一定的安全隐患,这在今天仍然有效吗?
wazoox

我相信这仍然有效。但是,我想任何想这样做的人都具有访问远程计算机的适当权限。
kentchen 2009年

这在Windows 7上对我有效,不需要重启。
奥马尔·沙欣(Emar Shahine)2009年

3

IntelliAdmin为此提供了一个免费实用程序:

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

编辑-我不记得您是否需要打开防火墙端口或不使用它。如果是这样,我可以使用pstools在命令提示符下禁用远程计算机上的防火墙。然后运行该工具。然后启用防火墙。

禁用/启用防火墙的psexec命令是:netsh防火墙set opmode mode = disable


看起来很整洁。它适用于Vista吗?
Bård

他们确实有一些Vista兼容产品,但是我不知道这是不是。
cop1152


2

很久以前,在《遥远的银河》中,我将此脚本编写为自动Windows Server 2003部署脚本的一部分。

rd.reg:

Windows Registry Editor Version 5.00

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

运行命令(这是从计算机上本地运行的批处理脚本到映射的z驱动器):

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

如果使用AD,则可以使用组策略将其推出。


已有“管理模板”设置-Windows组件/终端服务/允许用户使用终端服务进行远程连接
Evan Anderson,2009年

这是一个非常独特的情况-我们只能运行批处理脚本,而这是数据中心中的独立服务器。但是,仍然很高兴知道此信息。
Dave Drager

1

使用WMI和“ Win32_TerminalServiceSetting ”类的“ [SetAllowTSConnections] [1]”方法!

在Windows 2003命令行中,可以从命令行使用以下命令:

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

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


0

远程更改注册表值?可能需要重启。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.