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
| Vendor | Microsoft |
|---|---|
| Product | Terminalserver Server |
| Category | TS CONNECTIONS |
| Applies to | Computer Configuration |
| Supported on | TS_SUPPORTED_Windows7_Server |
| Registry Key | [HKLM]SOFTWAREPoliciesMicrosoftWindowsSession ManagerQuota System |
| Value Name | EnableCpuQuota |
| Type | REG_DWORD |
| Enabled value | 0 |
| Disabled value | 1 |
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:00000001PowerShell
# 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 