RDS Gateway > 使用 Powershell 更新资源授权策略
RDS Gateway > Update Resource authorization policies with Powershell
我想知道是否存在用于编辑 RD 网关管理器 > 资源授权策略 的 powershell 命令,如下面的屏幕截图所示。
我想编辑 'Manage Local Computer Group' 并在组中添加一台计算机
我尝试获取有关 RD CAP 的信息,但我不确定去哪里。
谢谢你的帮助
设置存储在路径中:
RDS:\GatewayServer\GatewayManagedComputerGroups
您可以尝试使用 powershell 将计算机添加到组中:
Import-Module RemoteDesktopServices
Get-Command -Module RemoteDesktopServices
New-Item -Path RDS:\GatewayServer\GatewayManagedComputerGroups$GroupsName\Computers -Name $computer
如果你想了解更多详情,cd RDS:\GatewayServer\GatewayManagedComputerGroups
看看会对你有很大帮助。
我想知道是否存在用于编辑 RD 网关管理器 > 资源授权策略 的 powershell 命令,如下面的屏幕截图所示。
我想编辑 'Manage Local Computer Group' 并在组中添加一台计算机 我尝试获取有关 RD CAP 的信息,但我不确定去哪里。
谢谢你的帮助
设置存储在路径中:
RDS:\GatewayServer\GatewayManagedComputerGroups
您可以尝试使用 powershell 将计算机添加到组中:
Import-Module RemoteDesktopServices
Get-Command -Module RemoteDesktopServices
New-Item -Path RDS:\GatewayServer\GatewayManagedComputerGroups$GroupsName\Computers -Name $computer
如果你想了解更多详情,cd RDS:\GatewayServer\GatewayManagedComputerGroups
看看会对你有很大帮助。