我正在尝试在旧的 Windows 8 笔记本电脑上启用远程桌面。
我没有找到通过 GUI 执行此操作的方法,因为我没有随处显示的设置(1,2等等)这就是我所拥有的
第二张图片是我得到的先进的。
在注册表编辑器中,设置
HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnections
为0
(它存在,并且被设置为1
)。尝试在提升的提示符下执行
netsh advfirewall firewall set rule group="remote desktop" new enable=yes
该命令。但该命令不可用:C:\windows\system32>netsh advfirewall set ? The following commands are available: Commands in this context: set allprofiles - Sets properties in all profiles. set currentprofile - Sets properties in the active profile. set domainprofile - Sets properties in the domain profile. set global - Sets the global properties. set privateprofile - Sets properties in the private profile. set publicprofile - Sets properties in the public profile.
按照 (5),我也尝试过一种较旧的形式
C:\windows\system32>netsh firewall set service RemoteDesktop enable IMPORTANT: "netsh firewall" is deprecated; use "netsh advfirewall firewall" instead. For more information on using "netsh advfirewall firewall" commands instead of "netsh firewall", see KB article 947709 at http://go.microsoft.com/fwlink/?linkid=121488 . C:\windows\system32>netsh advfirewall firewall set service RemoteDesktop enable The following command was not found: advfirewall firewall set service RemoteDesktop enable.
我想知道为什么我没有set rule
(可能是因为这是一个旧版本的netsh
助手),以及主要是如何最终允许远程桌面连接。