在 Windows 8 中启用远程桌面

在 Windows 8 中启用远程桌面

我正在尝试在旧的 Windows 8 笔记本电脑上启用远程桌面。

我没有找到通过 GUI 执行此操作的方法,因为我没有随处显示的设置(12等等)这就是我所拥有的

在此处输入图片描述在此处输入图片描述

第二张图片是我得到的先进的

所以我寻找了一个命令行方法(34等)我的所作所为:

  1. 在注册表编辑器中,设置HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\fDenyTSConnections0(它存在,并且被设置为1)。

  2. 尝试在提升的提示符下执行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助手),以及主要是如何最终允许远程桌面连接。

相关内容