2020-04-07

Add IP Subnet to RAP Managed Local Computer Groups

因為在 Microsoft VDI 攻略 這篇文末 Debug 的部份提到的【連線目標一直是 IP 沒辦法變成電腦名稱 FQDN】的問題三不五時就發生
所以決定用一些偷雞摸狗 (?) 的方式解決

在 RAP 建立一個 Manage Local Computer Group 並把 VDI Pool 的網段所有 IP 都加入
這樣總行了吧?
用圖形介面慢慢敲,敲他 253 個 IP 很累,當然要用 Powershell 來做

Powershell 指令如下:


  • 先匯入指令模組
    • Import-Module RemoteDesktopServices
  • 在新增群組並給予第一個 IP
    • New-Item "RDS:\GatewayServer\GatewayManagedComputerGroups" -Name "VDI Pool" -Description "VDI Pool" -Computer "10.10.10.1"

  • 接下來用 For 迴圈將整個 Class C 網段的 IP 全部加入
For ($i=1;$i -le 254; $i++) {
New-Item "RDS:\GatewayServer\GatewayManagedComputerGroups\VDI Pool\Computers\" -Name  "10.10.10.$i"
};

  • 做完後可以用指令檢查
    • Get-Item "RDS:\GatewayServer\GatewayManagedComputerGroups\VDI Pool\Computers\*"
  • 以下指令可以全部移除,但最後會出現一個錯誤,因為 Computer Group 中最少要有一個 Item
    可以用指令刪除到只剩一個再用圖形介面整個刪除
    • Remove-Item "RDS:\GatewayServer\GatewayManagedComputerGroups\VDI Pool\Computers\*"


沒有留言:

張貼留言