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
| Vendor | Microsoft |
|---|---|
| Product | Microsoft User Experience Virtualization policy settings |
| Category | Microsoft User Experience Virtualization › Windows Apps |
| Applies to | Computer & User Configuration |
| Supported on | Windows8 |
| Registry Key | [HKLM|HKCU]SoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe |
| Value Name | SyncSettings |
| 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_MACHINESoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe]
"SyncSettings"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftUEVAgentConfigurationWindows8AppListMicrosoft.ZuneVideo_8wekyb3d8bbwe]
"SyncSettings"=dword:00000000PowerShell
# 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