使用命令提示符或 PowerShell 启用远程桌面

如果您想在不打开Windows 设置面板的情况下使用(Windows Settings)远程桌面(Remote Desktop)功能,则可以使用命令提示符(Command Prompt)Windows PowerShell启用(Windows PowerShell)远程桌面(Remote Desktop)。如果您的手机或另一台计算机上有远程桌面客户端,您将能够连接它并远程使用您的 PC。

远程桌面是(Remote Desktop)Windows 11/10计算机的著名工具,可让您连接两台计算机或移动设备,以便个人可以远程访问另一台计算机。您可以通过手机解决计算机上的一些问题或根据您的要求做其他工作。您需要在您的移动设备上安装一个远程桌面(Remote Desktop)客户端(如Microsoft 远程桌面(Microsoft Remote Desktop)等)来连接两台设备。

可以通过Windows 设置(Windows Settings)启用禁用远程桌面(enable to disable Remote Desktop)。您需要前往System > Remote Desktop以访问该选项。但是,我们假设由于某些原因, Windows 设置面板没有打开,您需要打开远程桌面(turn on the Remote Desktop)功能。然后您可以使用此方法使用命令行启动远程桌面。(Remote Desktop)

使用命令(Command)行启用远程桌面(Remote Desktop)

要使用命令提示符(Command Prompt)Windows PowerShell启用远程桌面(Remote Desktop),请执行以下步骤 -

  1. 以管理员权限打开命令提示符(Command Prompt)PowerShell
  2. (Set)fDenyTSConnections REG DWORD的值设置为 0
  3. 添加防火墙规则
  4. 重启你的电脑
  5. 开始(Start)Windows 10中使用远程桌面(Remote Desktop)

命令提示符(Command Prompt)Windows PowerShell的命令不同。

1]使用命令提示符(Command Prompt)启用 RDP(Enable RDP)防火墙

使用命令提示符和 Windows PowerShell 启用远程桌面

要开始使用,请以管理员权限打开命令提示符(open the Command Prompt with administrator privilege)。您可以在任务栏(Taskbar)搜索框中搜索它,然后单击屏幕上显示的以管理员​​身份运行选项。(Run as administrator)之后,输入以下命令并按Enter

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f

默认情况下, fDenyTSConnections 的值设置为1。此命令会将值更改为0

接下来,执行以下命令:

netsh advfirewall firewall set rule group="remote desktop" new enable=yes

此命令将在防火墙(Firewall)中添加和更新三个规则,以便您可以开始使用远程桌面(Remote Desktop)

2]使用Windows PowerShell启用 RDP(Enable RDP)

您需要以管理员权限打开 Windows PowerShell(open the Windows PowerShell with administrator privilege)并输入以下命令并按Enter

Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0

此命令会将 fDenyTSConnections 值更改为0。现在,您需要执行以下命令在防火墙中添加规则:

Enable-NetFirewallRule -DisplayGroup "Remote Desktop"

之后,您将能够在Windows 10中使用(Windows 10)远程桌面(Remote Desktop)

如果您想使用命令提示符(Command Prompt)Windows PowerShell禁用(Windows PowerShell)远程桌面(Remote Desktop),您需要输入这些步骤。

相关(Related)远程桌面选项是灰色的(Remote Desktop option is greyed out)

使用命令提示符(Command Prompt)PowerShell禁用远程桌面(Remote Desktop)

要使用命令提示符(Command Prompt)Windows PowerShell禁用远程桌面(Remote Desktop),请执行以下步骤 -

  1. 以管理员权限打开命令提示符(Command Prompt)PowerShell
  2. (Set)fDenyTSConnections REG DWORD的值设置为 1
  3. 添加防火墙规则
  4. 重新启动计算机。

要了解更多信息,您需要继续阅读。

使用命令提示符(Command Prompt)禁用远程桌面(Remote Desktop)

您需要将 fDenyTSConnections 的默认值设置为1。为此,请使用此命令-

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 1 /f

现在您需要从防火墙(Firewall)中删除规则。为此,请使用此命令-

netsh advfirewall firewall set rule group="remote desktop" new enable=No

使用PowerShell禁用远程桌面(Remote Desktop)

您需要将 fDenyTSConnections 的值更改为1。你可以通过使用这个命令来做到这一点 -

Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 1

第二个命令将允许您从防火墙中删除规则:

Disable-NetFirewallRule -DisplayGroup "Remote Desktop"

就这样!我希望这个简单的教程对你有所帮助。



About the author

我是计算机专家,专门研究 iOS 设备。自 2009 年以来,我一直在帮助人们,我在 Apple 产品方面的经验使我成为满足他们技术需求的完美人选。我的技能包括: - 维修和升级 iPhone 和 iPod - 安装和使用 Apple 软件 - 帮助人们找到最适合他们的 iPhone 和 iPod 的应用程序 - 从事在线项目



Related posts