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.

Video

This policy setting configures the synchronization of user settings for the Video app.
By default, the user settings of Video sync between computers. Use the policy setting to prevent the user settings of Video from synchronizing between computers.
If you enable this policy setting, Video user settings continue to sync.
If you disable this policy setting, Video user settings are excluded from synchronization.
If you do not configure this policy setting, any defined values will be deleted.

Registry Information

VendorMicrosoft
ProductMicrosoft User Experience Virtualization policy settings
CategoryMicrosoft User Experience Virtualization › Windows Apps
Applies toComputer & User Configuration
Supported onWindows8
Registry Key[HKLM|HKCU]SoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe
Value NameSyncSettings
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_MACHINESoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe]
"SyncSettings"=dword:00000001

; Disable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe]
"SyncSettings"=dword:00000000

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe" -Name "SyncSettings" -Value 1 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe" -Name "SyncSettings" -Value 0 -Type DWord