How to disable metered Wi-Fi connection on a laptop in Windows 10

Modern operating systems strive to optimize resource consumption, and Windows 10 is no exception. The "Metered Connection" feature was introduced by developers for users who access the internet via mobile hotspots or data plans with limited data. However, if you're using an unlimited home Wi-Fi plan, this setting can be a significant nuisance, blocking system updates and restricting background app activity.

Many users encounter a situation where their laptop stops downloading critical security patches or maps in navigation programs, citing network restrictions. This often happens automatically after updating drivers or changing router settings. Understanding How to disable metered Wi-Fi connection on a laptop in Windows 10, becomes a key skill to ensure stable operation of the device.

In this article, we'll take a detailed look at all available methods for lifting restrictions: from simple interface switches to editing the system registry. You'll learn why the system may ignore your settings and how to restore full network access for all operating system services.

The concept of a metered connection and its impact on the system

A metered connection is a special network adapter operating mode that informs the operating system of any restrictions on the amount of data transferred. When this mode is activated, Windows 10 switches to power-saving mode: background downloads in the app store are stopped, cloud storage synchronization is paused, and automatic downloads of security updates are blocked.

The main purpose of this functionality is to protect the user from unexpected mobile internet charges. However, in a home environment Wi-Fi connections With an unlimited plan, these restrictions become unnecessary. The system begins to behave as if every megabyte is precious, which reduces overall performance and software up-to-dateness.

It's important to note that connection status can change dynamically. For example, if you connected to a smartphone's hotspot, the system may have recognized that network as metered. When reconnecting to a home router with the same name (SSID), the settings may be copied, creating confusion.

⚠️ Attention: If you use a laptop while traveling and connect to mobile internet via a USB modem or mobile data sharing, forcibly disabling the limit can lead to rapid data consumption and additional financial costs.

System services react to this status differently. Some applications completely cease activity, while others simply reduce the frequency of server requests. Understanding these mechanisms helps diagnose problems with file synchronization or antivirus database updates.

Basic method of disabling via network settings

The easiest and safest way to change your connection status is to use the built-in Windows graphical interface. This method requires no special knowledge and is suitable for most standard situations. First, ensure your laptop is connected to the network whose settings you plan to change.

To get started, open the Start menu and go to "Settings" (the gear icon). Next, select "Network & Internet." In the window that opens, select "Wi-Fi" on the left, then click the name of your current wireless network. The interface may vary slightly depending on the build version. Windows 10.

In the network properties menu that opens, find the "Metered Connection" toggle. If it's active (blue), simply toggle it to the "Off" position. This immediately removes data transfer restrictions for the current profile.

☑️ Check connection status

Completed: 0 / 4

Sometimes users encounter a missing or inactive switch. This may indicate group policies or network service errors. In this case, more in-depth configuration methods are needed.

It's important to remember that these settings only apply to a specific network. If you connect to a different Wi-Fi network, you'll have to repeat the process again. connection profile Each access point is unique.

Managing network profiles via the registry

If the graphical interface doesn't allow you to change settings, the only reliable solution is editing the system registry. This method requires caution, as incorrectly changing keys can lead to unstable operation of network components.

To start, press the key combination Win + R and enter the command regeditIn the Registry Editor window that opens, navigate to the following path:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\DefaultMediaCost

Here you'll see keys for Ethernet, Dialup, and Wi-Fi. We're interested in the parameter WifiDouble click on it and change the value to 1 (which means "Unlimited"). Meaning 2 corresponds to the limited connection.

Key point: Changing this setting globally changes the system behavior for all new Wi-Fi connections, unless they have individual settings. However, existing profiles may require additional adjustments.

Parameter Meaning Description
1 Unrestricted Unlimited connection (standard for home network)
2 Fixed Limited connection (traffic saving)
3 Variable Variable limit (depending on network type)

After making changes, you must restart your computer for the network service to work. Network List Service applied the new settings. If access to the registry is blocked, check for administrator rights or antivirus software that may be blocking changes.

What to do if access to the registry is denied?

If you receive an access error when trying to change a registry value, you need to change the key's owner. Right-click the DefaultMediaCost folder, select "Permissions," then "Advanced." In the "Owner" field, enter your account and check "Replace owner on subcontainers and objects." Then grant full permissions to your user group.

Using the Command Prompt and PowerShell

Advanced users and system administrators can manage limit settings via the command line. This is especially convenient for quickly resetting settings or managing them remotely.

Launch Command Prompt as administrator. Enter the following command to view all network profiles:

netsh wlan show profiles

To see the detailed status of a specific connection, use the command:

netsh wlan show profile name="Your_Network_Name" key=clear

In the command output, look for the line "Cost" or "Cost". Unfortunately, standard tools netsh Directly toggling the limit flag is difficult, as this setting is stored in the GUI and registry. However, PowerShell provides more flexible tools via WMI.

Open PowerShell with administrator rights and run the script to force the status:

$connectionProfile = [Windows.Networking.Connectivity.NetworkInformation,Windows.Networking.Connectivity,ContentType=WindowsRuntime]::GetInternetConnectionProfile

$tetheringOperationalData = $connectionProfile.GetConnectionCost

if ($tetheringOperationalData.ApproachingDataLimit -eq $true) {

Write-Host "Connection approaching limit"

}

While this script is more of a diagnostic, it confirms that the system is seeing the limitation. A combination of methods is often required for full control: resetting the network via netsh and re-configuration via the interface.

Configuration via Group Policy

In corporate networks or Windows 10 Pro and Enterprise editions, metered connection management is often controlled by group policies. If you can't change the settings normally, it's possible the block is set at the policy level.

Click Win + R, enter gpedit.msc and press Enter. Navigate to the following path: Computer Configuration → Administrative Templates → Network → QoS Packet Scheduler.

Here you need to find the parameter related to traffic limitation. However, a more relevant path is located in the section:

Computer Configuration → Administrative Templates → Network → Network Connections

Find the "Set metered connection by default" policy and ensure it's disabled or not configured. If enabled, the system will force data saving mode on all new connections.

  • 🚀 Open the Local Group Policy Editor.
  • 📂 Go to the network connections section.
  • ⚙️ Find the traffic limit settings.
  • ✅ Set the value to "Disabled".

After applying the policy changes, you must run the command gpupdate /force on the command line to make the rules take effect immediately. This ensures that security policy will not overwrite your manual settings.

📊 Have you ever encountered a problem where Windows automatically turned on a metered connection?
Yes, all the time.
Sometimes it happens
Never seen it before
Only after updates

Diagnosing and troubleshooting

Even after completing all the settings, the system may still ignore your changes. This is often due to profile caching or a network adapter driver conflict. First, try "Forgetting" the network and reconnecting.

Go to "Manage known networks," select your Wi-Fi network, and click "Forget." Then reconnect by entering the password. When you first connect, Windows 10 usually asks if you want to make your computer visible, but it doesn't always prompt you to select a traffic type, relying on its algorithms.

Another possible cause could be an outdated Wi-Fi driver. Visit the laptop manufacturer's website (for example, Asus, Lenovo, HP) and download the latest driver for your model. Old drivers may not correctly communicate network status to the operating system.

⚠️ Attention: The settings interface and menu item layout may vary depending on your Windows 10 version (Home, Pro) and installed updates. If you don't see the setting, check your OS build is up to date.

It's also worth checking Windows services. Make sure the Connection Manager and Network List services are running in automatic mode. Stopping them may cause the system to stop monitoring connection status and apply default (often limiting) settings.

The influence of antiviruses and third-party software

Don't discount the influence of third-party software. Antivirus programs with traffic monitoring features or internet optimizers can hijack control of the network adapter. They may force the power-saving mode, believing it to be safer or more efficient.

Check your antivirus settings (Kaspersky, ESET, Avast, etc.). In the "Network" or "Real-time protection" sections, you may see options like "Data Saver Mode" or "Metered Connection." Disabling these features in third-party software often resolves issues that Windows can't resolve.

Additionally, some Wi-Fi sharing programs (virtual routers) can create virtual adapters that are marked as metered by default. If you use such utilities, check their settings.

Why does Windows 10 automatically enable metered connections?

The operating system analyzes the network type. If you previously connected to this SSID via a mobile hotspot (phone), Windows remembers the network as metered. When connecting to a home router with the same name, the system applies the old settings for security and bandwidth savings.

Does a metered connection affect internet speed?

This mode doesn't directly affect the bandwidth (Mbps). However, it does limit background app activity. Browser file downloads will run at full speed, but Windows updates or OneDrive sync may not launch at all or be very slow due to traffic prioritization.

Is it possible to artificially set a limit for a home network?

Yes, this makes sense if you have a weak connection or want to limit background activity like games and torrents so they don't interfere with video calls. Turn on the "Metered Connection" toggle in your network settings, and the system will stop downloading large amounts of data in the background.

Do settings reset after a Windows update?

Major feature updates (such as upgrading from version 1909 to 20H2) may reset some network settings to default values. After such an update, it's recommended to check your connection status, as the system may re-enable data saving.