GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators. Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

Select a product
  • Select a category.

Turn off Fair Share CPU Scheduling

Fair Share CPU Scheduling dynamically distributes processor time across all Remote Desktop Services sessions on the same RD Session Host server, based on the number of sessions and the demand for processor time within each session.

If you enable this policy setting, Fair Share CPU Scheduling is turned off.

If you disable or do not configure this policy setting, Fair Share CPU Scheduling is turned on.

Registry Information

VendorMicrosoft
ProductTerminalserver Server
CategoryTS CONNECTIONS
Applies toComputer Configuration
Supported onTS_SUPPORTED_Windows7_Server
Registry Key[HKLM]SOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System
Value NameEnableCpuQuota
TypeREG_DWORD
Enabled value0
Disabled value1

Registry File (.reg)

Windows Registry Editor Version 5.00

; Enable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System]
"EnableCpuQuota"=dword:00000000

; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System]
"EnableCpuQuota"=dword:00000001

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System" -Name "EnableCpuQuota" -Value 0 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System" -Name "EnableCpuQuota" -Value 1 -Type DWord