Powershell
使用 PowerShell 在多台伺服器上設置 RDS
這個問題的後續。
我在一台主機上安裝了 RDS 網關和連接代理,在第二台專用主機上安裝了會話主機:
伺服器 A(哥倫布):
Add-WindowsFeature –Name RDS-Gateway –IncludeAllSubFeature Add-WindowsFeature –Name RDS-Connection-Broker –IncludeAllSubFeature
伺服器 B(敦刻爾克):
Add-WindowsFeature –Name RDS-RD-Server –IncludeAllSubFeature
伺服器 A 上的伺服器管理器顯示:
在伺服器 B 上顯示:
顯然我錯過了讓兩台伺服器正確通信的步驟,如何單獨使用 PowerShell 來完成?他們可以“看到”對方,所以並不是說他們根本沒有交流:
嘗試執行這個:
import-module RemoteDesktop New-SessionDeployment -ConnectionBroker "colombes.fqdn" -SessionHost "dunkirk.fqdn"
這裡有一些關於該主題的好資訊:在 Windows Server 2012 上使用 PowerShell 部署基於會話的桌面部署