Select a product
- Select a category.
Use User Experience Virtualization (UE-V)
This policy setting allows you to enable or disable User Experience Virtualization (UE-V). Only applies to Windows 10 or earlier.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft User Experience Virtualization policy settings |
| Category | Microsoft User Experience Virtualization |
| Applies to | Computer & User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKLM|HKCU]SoftwarePoliciesMicrosoftUEVAgentConfiguration |
| Value Name | SyncEnabled |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Note: this policy also applies under HKEY_CURRENT_USER
; Enable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftUEVAgentConfiguration]
"SyncEnabled"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftUEVAgentConfiguration]
"SyncEnabled"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfiguration" -Name "SyncEnabled" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfiguration" -Name "SyncEnabled" -Value 0 -Type DWord