后续这个问题。
我在一台主机上安装了 RDS 网关和连接代理,并在第二台专用主机上安装了会话主机:
服务器 A (colombes):
Add-WindowsFeature –Name RDS-Gateway –IncludeAllSubFeature
Add-WindowsFeature –Name RDS-Connection-Broker –IncludeAllSubFeature
服务器B(敦刻尔克):
Add-WindowsFeature –Name RDS-RD-Server –IncludeAllSubFeature
服务器 A 上的服务器管理器显示以下内容:
在服务器 B 上显示:
显然,我错过了让两台服务器正确相互通信的步骤,仅使用 PowerShell 如何做到这一点?它们可以“看到”彼此,因此并不是说它们根本没有通信:
答案1
尝试运行这个:
import-module RemoteDesktop
New-SessionDeployment -ConnectionBroker "colombes.fqdn" -SessionHost "dunkirk.fqdn"
这里有一些关于该主题的好信息:在 Windows Server 2012 上使用 PowerShell 部署基于会话的桌面部署