1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" `
-Name "IdleTimeout" `
-PropertyType DWORD `
-Value 0 -Force

New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" `
-Name "MaxConnectionTime" `
-PropertyType DWORD `
-Value 0 -Force

New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" `
-Name "ResetBroken" `
-PropertyType DWORD `
-Value 0 -Force

gpupdate /force

Restart-Service -Name TermService -Force