寻找在powershell中配置RDP-TCP属性的方法

时间:2017-08-30 15:12:11

标签: windows powershell

enter image description here

有没有办法在powershell中设置RDP-Tcp proerties的会话。

1 个答案:

答案 0 :(得分:0)

您可以使用RemoteDesktopServices Powershell模块:

Import-Module RemoteDesktopServices

然后将断开连接会话,活动会话,空闲会话限制设置为一小时使用:

 Set-Item `
-Path 'RDS:\RDSConfiguration\Connections\Default RDP\SessionTimeLimitSettings\TimeLimitPolicy' `
-Value 0 `
-IdleSessionLimit 3600000 `
-ActiveSessionLimit 3600000 `
-DisconnectedSessionLimit 3600000

浏览RDS提供商以查看所有选项:

Get-ChildItem RDS:
  • 示例中的“默认RDP”是我的RDP连接名称,因此请将其更改为RDP-Tcp或您的连接名称: