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.

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

VendorMicrosoft
ProductMicrosoft User Experience Virtualization policy settings
CategoryMicrosoft User Experience Virtualization
Applies toComputer & User Configuration
Supported onWindows7
Registry Key[HKLM|HKCU]SoftwarePoliciesMicrosoftUEVAgentConfiguration
Value NameSyncEnabled
TypeREG_DWORD
Enabled value1
Disabled value0

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:00000000

PowerShell

# 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