- Select a category.
Sync settings over metered connections even when roaming
This policy setting defines whether the User Experience Virtualization (UE-V) Agent synchronizes settings over metered connections outside of the home provider network, for example when connected via a roaming connection.
By default, the UE-V Agent does not synchronize settings over a metered connection that is roaming.
With this setting enabled, the UE-V Agent synchronizes settings over a metered connection that is roaming.
With this setting disabled, the UE-V Agent will not synchronize settings over a metered connection that is roaming.
If you do not configure this policy setting, any defined values are deleted.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft User Experience Virtualization policy settings |
| Category | Microsoft User Experience Virtualization |
| Applies to | Computer & User Configuration |
| Supported on | Windows8 |
| Registry Key | [HKLM|HKCU]SoftwarePoliciesMicrosoftUEVAgentConfiguration |
| Value Name | SyncOverMeteredNetworkWhenRoaming |
| 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]
"SyncOverMeteredNetworkWhenRoaming"=dword:00000001
; Disable the policy
[HKEY_LOCAL_MACHINESoftwarePoliciesMicrosoftUEVAgentConfiguration]
"SyncOverMeteredNetworkWhenRoaming"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfiguration" -Name "SyncOverMeteredNetworkWhenRoaming" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKLM:SoftwarePoliciesMicrosoftUEVAgentConfiguration" -Name "SyncOverMeteredNetworkWhenRoaming" -Value 0 -Type DWord