【发布时间】:2021-12-14 19:00:51
【问题描述】:
我需要知道 RDS 需要哪些服务才能在桌面 windows 平台上运行,以及如何编写 powershell 脚本来启用它们
【问题讨论】:
-
请提供足够的代码,以便其他人更好地理解或重现问题。
标签: powershell amazon-rds
我需要知道 RDS 需要哪些服务才能在桌面 windows 平台上运行,以及如何编写 powershell 脚本来启用它们
【问题讨论】:
标签: powershell amazon-rds
在 Windows 操作系统上启用远程桌面
这是在工作站或服务器上启用/禁用远程桌面服务的注册表项。
#Enable RDP : 1 = Disable ; 0 = Enable
Set-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Terminal Server" -Name "fDenyTSConnections" -Value 0
至于执行此操作的脚本,请看这里... How to programmatically set Unidentified Networks to be a Private or Public Network Location on Windows 10?
【讨论】: