Windows
1 前言
一个问题,一篇文章,一出故事。
笔者最近新装了一台Windows 2019的系统(没有桌面),需要通过命令行启用远程桌面连接,于是整理此文。
2 最佳实践
2.1 注册表启用远程桌面服务
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDeny TSConnections" -value 0
2.2 防火墙允许远程桌面连接
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
参阅文档
==================
https://pureinfotech.com/enable-remote-desktop-powershell-windows-10/
没有评论