- Select a category.
Do not allow hardware accelerated decoding
This policy setting specifies whether the Remote Desktop Connection can use hardware acceleration if supported hardware is available. If you use this setting, the Remote Desktop Client will use only software decoding. For example, if you have a problem that you suspect may be related to hardware acceleration, use this setting to disable the acceleration; then, if the problem still occurs, you will know that there are additional issues to investigate. If you disable this setting or leave it not configured, the Remote Desktop client will use hardware accelerated decoding if supported hardware is available.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Terminal Server |
| Category | Remote Desktop Services › Remote Desktop Connection Client |
| Applies to | Computer Configuration |
| Supported on | Windows 10 0 |
| Registry Key | [HKLM]SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient |
| Value Name | EnableHardwareMode |
| Type | REG_DWORD |
| Enabled value | 0 |
| Disabled value | 1 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient]
"EnableHardwareMode"=dword:00000000
; Disable the policy
[HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient]
"EnableHardwareMode"=dword:00000001PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient" -Name "EnableHardwareMode" -Value 0 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SOFTWAREPoliciesMicrosoftWindows NTTerminal ServicesClient" -Name "EnableHardwareMode" -Value 1 -Type DWord 