What you will achieve
Mark a Wi‑Fi or Ethernet connection as metered so Windows limits background downloads and respects your data cap.
1) Set metered on Wi‑Fi (Windows 11)
- Open Settings → Network & internet → Wi‑Fi → [your network name].
- Toggle Metered connection to On.
- Windows reduces automatic Windows Update downloads, Store updates, and some sync activity on that network.
2) Set metered on Ethernet (Windows 11)
- Go to Settings → Network & internet → Ethernet.
- Select the active adapter and enable Metered connection.
3) Windows 10 path
- Settings → Network & Internet → Wi‑Fi → Manage known networks → [network] → Properties.
- Set Set as metered connection to On.
4) Verify and understand limits
Admin PowerShell:
Get-NetConnectionProfile | Select-Object Name, InterfaceAlias, NetworkCategory, @{N='Metered';E={(Get-NetAdapterAdvancedProperty -Name $_.InterfaceAlias -RegistryKeyword '*Metered*' -ErrorAction SilentlyContinue).RegistryValue}}
Metered mode delays but does not permanently block security updates. OneDrive and other apps may still sync unless configured separately.
5) What still downloads on metered
- Critical security updates may still install — metered is a throttle not a full block.
- Store auto-updates and peer delivery pause; manual Store updates still work.
- OneDrive sync continues unless you pause sync separately in OneDrive settings.
6) Set metered via Group Policy (Pro)
- Computer Configuration → Administrative Templates → Network → WLAN Service → WLAN Settings — cost settings for corporate SSIDs.
7) Registry check per adapter
Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles"
8) Per-app background data
- Settings → Apps → Installed apps → [app] → Advanced options → Background apps permissions — set Never on metered-heavy apps like cloud sync tools.
9) Ethernet metered on Windows 10
- Requires registry on some 10 builds:
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\DefaultMediaCost— use Settings on 11 where possible instead.
10) Corporate VPN always-on interaction
- VPN may mark connection as Domain profile — metered Wi‑Fi setting might not apply while tunnelled.
- Confirm update behaviour on VPN separately from home metered Wi‑Fi testing.
11) Pause OneDrive on metered
- OneDrive tray → Settings → Network → “Pause syncing” on metered or limit upload rate.
Verification checklist
After enabling metered, monitor Settings → Windows Update for download behaviour over 24 hours. Confirm OneDrive sync paused if that was the goal.
- Reboot once after changes that affect services, drivers, or firmware.
- Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
- Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.