Disable windows 10 update via registry. How to disable and restore automatic Windows 10 updates. Using Show or hide updates, a dedicated tool to hide updates

Configuring Automatic Updates in Windows 10

In Windows 10, the approach to updating the system has changed dramatically, and therefore the ability to configure automatic updates is greatly curtailed. In addition, the available settings depend on the edition of Windows you are using.

So in Windows 10 Home, all new features, updates and security updates are installed with Windows Update, while the user has no control over the update process. The only thing the user can do is to postpone the reboot for a while. The Pro edition is more humane and allows you to manage some update parameters - choose an update source, set a schedule and postpone the installation of updates (except security updates) for a long time. The ability to completely disable automatic updates is not provided in any of the editions in principle.

Of course, automatic updating is an essential component. operating system and regularly downloading and installing updates, especially critical fixes and security updates, is essential for the stable and safe functioning of the system. However, the user should be able to choose when, how, and which updates to download and install. And even the ability to completely turn off the automatic check for updates should also be. How to realize this opportunity will be discussed further.

I will try to describe all the ways I know how to manage automatic updates in Windows 10. Let's start with the simplest and most accessible.

Windows Update

In Windows 10, the familiar classic Windows Update has been completely removed from the Control Panel and is no longer available. The new update center is located in the system settings section and to open it you need to go to the "Settings" - "Update and Security" section in the "Start" menu.

In the main window of the Update Center, there is practically no choice, you can only view the list of available updates and information about them.

The only available setting allows you to select the time for the mandatory reboot. Here you can specify the desired day and time of the reboot, or reboot immediately so as not to suffer for a long time 🙂

In the Home edition, these are all available settings, and in the older editions of Windows 10 (Pro, Enterprise and Education), the user can click on the "Advanced options" link.

In the additional parameters, you can choose how the updates are installed. True, the choice is not rich and consists of only two options:

Automatic - Updates are automatically downloaded and installed, followed by an automatic restart;
Notify about reboot scheduling - updates are also downloaded and installed automatically, but a reboot can be scheduled at a convenient time.

You can also enable the "Postpone updates" option, which allows you to disable downloading and installing updates for a while. This option is aimed primarily at corporate users and is intended to give them the opportunity to test new functionality(which can now be included in updates) before mass adoption in the organization. Users of the Home edition do not have this opportunity, so they unwittingly act as testers 🙂 for the corporate sector.

Delayed updates do not include critical fixes and security updates, which will be automatically installed anyway. The exact period for which the updates are postponed is unknown, in different sources there are numbers from several days to several months.

One more interesting moment... Windows 10 has a new Windows Update Delivery Optimization based on P2P technology. Simply put, after downloading updates from Windows servers Update, your computer starts to distribute them to other devices on the network, like a torrent client.

This feature is enabled by default and to disable it, follow the link “Select how and when to receive updates” and set the slider to Off.

You can view the installed updates in the Control Panel by going to the "Programs and Features" section - " Installed updates". If after the update there are problems, then here any of the installed updates can be removed.

Disable automatic driver updates

The Windows operating system contains a repository of drivers for the most common devices. By default, new driver versions are loaded automatically, with using Windows Update. In some cases, the presence of the necessary driver in the system is quite convenient, however, Windows Update does not always contain the freshest / best driver, and it is better to update the drivers manually in order to avoid unexpected problems with the hardware. Therefore, it is better to disable automatic driver updates, since this feature is still available in Windows 10.

In order to get to the driver update settings, you need to open the "System" section in the control panel and select the "Advanced system settings" item, then go to the "Hardware" tab and click the "Device installation settings" button. You can also open the desired window by clicking Win + R and running the command rundll32 newdev.dll, DeviceInternetSettingUi.

To disable automatic downloading of drivers, select the item "Never install drivers from Windows Update".

Turn off automatic updates for modern apps

Modern apps (apps from Windows Store) are also updated automatically. To fix this, you need to open the "Store" item in the "Start" menu, click on the little man icon, select the "Options" item in the menu that opens, and then in the "Update applications automatically" item, put the switch in the Off position.

After that, the apps from the store will not be updated automatically and will have to be updated manually if necessary.

Note. Initially, Windows 10 Home users couldn't turn off automatic app updates from the Windows store. This feature was added later with the KB3081448 update.

Show or hide update utility

The old Update Center, among other things, made it possible to select and indefinitely postpone (hide) updates. The new one initially does not have this feature, but there is a special utility from Microsoft called Show or hide update, which can do about the same. The utility is not included in the system but is loaded separately.

No installation is required, just copy and run the wushowhide.diagcab file, after which the utility starts collecting data on available updates.

After collecting the data, you are prompted to select an action. To hide updates, select "Hide updates".

We mark those updates that need to be hidden, and click "Next".

While the update is hidden, the operating system will not install it. And if necessary, hidden updates can be restored, for which you need to run the utility again, select "Show hidden updates" and check the box next to the desired update. After that, the update will be installed in the general order.

Using "Show or hide update" allows you to postpone the installation of any problematic updates (including security updates), but you will not be able to completely avoid updating this way. All minor updates are part of the major ones and will be installed sooner or later.

These were simple ways, slowly moving on to more advanced ones.

Configuring Automatic Updates Using PowerShell

You can use the PSWindowsUpdate module from the Microsoft Script Center to manage updates. To use it, download the archive, unpack it and put it in the% WINDIR% \ System32 \ WindowsPowerShell \ v1.0 \ Modules folder. Then we start the PowerShell console and allow the execution of unsigned scripts with the command:

Set-ExecutionPolicy Bypass -Force

Let's import the module into the current session:

Import-Module PSWindowsUpdate

And we display a list of commands for the module:

Get-Command -Module PSWindowsUpdate

The module contains 14 cmdlets:

Get-WUList - gives a list of available updates;
Get-WUInstall - starts downloading and installing updates;
Get-WUUninstall - removes the selected updates;
Invoke-WUInstall - serves to manage updates on remote computers;
Hide-WUUpdate - hides the selected updates;
Get-WUHistory - displays information about installed updates;
Add-WUOfflineSync - registers a service that allows you to install updates from the local cache (Offline sync service);
Remove-WUOfflineSync - removes the registered service;
Get-WUServiceManager - displays a list of available update services (Windows Update, WSUS, etc.);
Add-WUServiceManager - registers the selected update service;
Remove-WUServiceManager - removes the selected update service;
Get-WUInstallerStatus - shows the status of the Windows Update Installer service;
Get-WURebootStatus - allows you to clarify the need for a reboot;
Update-WUModule - serves to centrally update the PSWindowsUpdate module on remote computers.

For example, let's display a list of available updates and hide one of them:

Get-WUList
Hide-WUUpdate -KBArticleID KB3087040 -Confirm: $ false

After this update KB3087040 will not be installed. If necessary, it can be unblocked with the following command:

Hide-WUUpdate -KBArticleID KB3087040 -HideStatus: $ false

In general, the PSWindowsUpdate module has quite a few features, which, in a good way, need to be dealt with in detail. Windows support 10 has not yet been announced by the author, but the commands are executed quite correctly.

Configuring Automatic Updates Using Group Policies

This method is available only for older editions of Windows 10, because there is no group policy editor in the Home edition. To open the Local Group Policy Editor snap-in, click Win + R and execute the command gpedit.msc... Automatic update settings are located in Computer Configuration - Administrative Templates - Windows components- Windows Update.

All basic settings are specified in the "Configure Automatic Updates" policy. First you need to enable it, after which you can choose one of 4 update options:

2 - notification about downloading and installing updates;
3 - automatic download and installation notification;
4 - automatic download and installation on a schedule;
5 - allow the local administrator to select the automatic update options.

If option 4 is selected, then you can additionally set the day and hour for installing updates, as well as specify to install updates only during idle periods, during automatic system maintenance.

Note. When this policy is activated, the settings in Windows Update become unavailable. The exception is option number 5, which allows local administrators to change the update mode in Update Center.

If you have selected the option to automatically download and install on a schedule, then you can additionally use the following settings.

Always automatically reboot at the scheduled time

If this policy is enabled, then after installing updates, the computer will be restarted regardless of what. To prevent a sudden restart and users have time to save the results of their work, you can set a restart timer from 15 minutes to 3 hours.

Do not automatically reboot when automatically installing updates if users are running on the system

Everything is clear from the name of the policy. If this policy is enabled, then after installing updates, the computer does not restart automatically, but displays a notification that the installation is complete and waits for the user to restart. Cancels the effect of the previous policy.

Re-prompt for reboot on scheduled installations

This policy determines the time after which the system will issue a second request if a scheduled reboot is canceled. If this policy is not active, then requests will be issued every 10 minutes.

Delayed restart for scheduled installations

This policy sets the time that must elapse from the moment the updates are installed until the restart.

Transferring scheduled unattended update installations

If the computer was turned off and the updates were not installed at the scheduled time, it will be launched immediately after the next computer start. In this policy, you can specify the time that must elapse from the moment the system is booted to the beginning of the installation.

Prevent installation of devices not described by other policy settings

This policy is used to disable automatic driver updates and is located in Computer Configuration - Administrative Templates - System - Device Installation - Restriction on Device Installation.

Note. I described setting up local group policies, but there are also exactly the same domain ones. And if the computer is on an enterprise network and is a member of a domain Active Directory, then (as a rule) the settings for automatic updating are determined by domain policies. Domain policies have the highest priority and override any local settings.

Configuring Automatic Updates Using the Registry

The most powerful system management tool is registry editing. In the registry, you can set all the same settings as using group policies, in addition, it gives you the ability to completely turn off automatic updates.

To configure, open the registry editor (Win + R -> Regedit) and go to the HKLM \ SOFTWARE \ Policies \ Microsoft \ Windows section. Create a new section WindowsUpdate, in it a subsection named AU... In the AU section, create DWORD parameters that are responsible for automatic updates.

Here are the most important ones.

AUOptions- the main parameter responsible for the method of receiving and installing updates. It can have the following values:
2 - notify before downloading and installing any updates;
3 - automatically download updates and notify about the readiness of the installation;
4 - automatically download updates and install according to the schedule;
5 - Allow local administrators to manage update options.

NoAutoUpdate- a parameter that allows you to completely disable automatic search and installing updates. Meaning 1 - automatic update is disabled, 0 - updates will be downloaded and installed according to the settings specified in the parameter AUOptions.

If the value is enabled for automatic download and installation on a schedule (AUOptions = 4), then you can additionally specify additional parameters.

ScheduledInstallDay- day of the week on which updates are scheduled to be installed. Meaning 0 means daily setting, values ​​from 1 before 7 indicate a specific day of the week (1 is Monday).

ScheduledInstallTime- the time at which the updates are scheduled to be installed. Values ​​from 0 to 23 hours are available for this parameter, which corresponds to hours in a day.

AutomaticMaintenanceEnabled- value 1 means that updates should be installed during idle time, as part of automatic system maintenance.

NoAutoRebootWithLoggedOnUsers- value 1 disables automatic restart after installing updates. The Automatic Updates service will wait for a reboot by any logged on user.

Note. In theory, managing updates by editing the registry can work in Windows 10 Home too. In practice, this has not been verified due to the lack of the required edition.

To disable automatic driver updates, you need to find the parameter in the HKLM \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ DriverSearching section SearchOrderConfig and set its value to 0 .

Disable Automatic Updates

And in the most urgent case, you can turn off automatic updates by stopping the corresponding service. To do this, open the Services snap-in (Win + R -> services.msc), find the service called Windows Update and stop it. And so that it does not start on its own, the startup type must be set to Disabled.

The same can be done using PowerShell. To stop, use the following command:

Stop-Service wuauserv -Force

To disable this:

Set-Service wuauserv -StartupType Disabled

You can view the status of the service like this:

Get-Service wuauserv

Well, this is how you can put everything back and start the service:

Set-Service wuauserv -StartupType Manual
Start-Service wuauserv

After disabling the service, the Update Center will give an error when you try to check for updates. This is an extremely crude method, although it works on all dozens of editions without exception, but I repeat - it is worth using it in emergency cases, for example, if you need to urgently stop the update process.

Conclusion

As you can see, although it has become more difficult to manage automatic updates in Windows 10, there are enough ways to do this. In conclusion, I will say that Microsoft does not recommend postponing or completely stopping automatic updates for a long time. Updates have a specific expiration date, so if they are not updated within 8 months, new updates cannot be installed.

One of the undoubted disadvantages of the operating room Windows systems 10 is its obsessive desire to update without the desire of the user. And this often happens at the wrong time. Or updates, installed by the system on their own, not only did not improve the work, but also broke some functions. Therefore, it is logical that the user wants to intervene in the automatic update process and disable it, or at least enable it on schedule.

How to disable automatic updates in Windows 10

We immediately warn that each method described below has limitations in the editions of the operating system. Recall that Windows 10 has 11 of them:

  • Home;
  • Home for one language;
  • Home with Bing;
  • Professional;
  • S (Professional configuration);
  • Mobile;
  • Corporate;
  • Corporate with long-term service;
  • For educational institutions;
  • Mobile corporate;
  • Io T Home.

More details about editions and their functions can be found.

Now let's look at 3 main ways to disable the update.

Turn off the update center (service)

We act in stages:

Now about the versions. This method is suitable for Professional, Home and Corporate.

Disable via Local Group Policy Editor

The following method is only suitable for Windows 10 Professional and Enterprise.

  1. Search again, this time we start to enter "Group .." and click on the control panel item already offered to us.
  2. In the editor, go to the "Computer configuration" branch. Next is the "Administrative Templates" folder. Here we are looking for "Windows Components". And finally - "Windows Update". In the window on the right, select the item "Configure automatic update".
  3. Click on "Change policy setting". In this window, activate the "Disabled" item. Apply changes, close.

By deleting from the registry

Well, the third way, which will not work only in the Home version, is through the editor windows registry 10.


Programs to turn off Windows 10 update

Since many users are dissatisfied with the "independence" of Windows 10, the programs for interfering with the work of the system were not long in coming. Among others - Win Updates Disabler. One of the undoubted advantages of this utility is that it is free. However, before downloading and installing a version of this program, it is worth checking it for viruses so as not to harm the system. In application, the program is intuitively simple and straightforward - put a tick in front of the desired item (the program of the same name) and apply the changes.

The program will automatically disable the interfering firewall and system defender, but for this you must act as an administrator when installing and using the program.

Among similar programs, Windows Update Blocker is also in demand. However, you will have to pay for its use.

The official Windows utility for managing updates

There are suggestions that the Windows developers themselves realized that the intrusiveness of the system is slightly annoying, and standard means complicate the management of this process for an ordinary user, or even block it altogether. Moreover, situations began to arise when the updates that came not only did not improve the system, but also broke some of its functions. Therefore, the developers themselves have created a utility to block updates.

The program is called Show or hide updates.


There is one but: only those updates that you have not installed are shown. This means that if an undesirable update is already installed in the system, then first it must be removed (by system means) and only after that it must be hidden with the utility.

Video: how to disable Windows 10 updates

How to enable automatic updates

We have already mentioned how to resume the automatic update service above.

When working with Windows politicians the sequence of actions is the same as when turning them off, only this time we need the "Enabled" item.

Now let's talk about update management and possible problems with him.

Configuring Automatic Updates

It is likely that you are happy with the automatic system updates, but you just want to control their schedule. Then you should follow these steps:

  1. In the Search, we are looking for "Parameters".
  2. Go to "Update and Security".
  3. By clicking on "Advanced options", we will be able to choose the appropriate way to install updates from the two available: automatically or after notification of a reboot.

    Also, as you can see, we can select "Postpone updates" - in this case, downloading and installing updates will be disabled for a while.

  4. Well, to view the updates installed on your computer, you can go to "Programs and Features" and find the item "Installed Updates" there. Here, the user can delete the desired update.

Windows Update won't open

This situation can arise due to a malfunction of the entire system. The problem that has arisen can be solved in a universal way - through the Windows Troubleshooter tool.

  1. In Search, enter the name of the instrument and click on the result of the same name.

    Select the highlighted item

  2. Here we select the item "System and Security", and in it - the first sub-item.

    We select the first sub-item in the item "System and Security"

  3. Before us is the Windows Update window. Now we check that there is a check mark under the "Advanced" link (as in the picture below), and click Next, then Next again.

    Check the box and select "Run as ..."

  4. Now we are waiting. What's happening now: The bug fixer stops the update service; renames the folder where the update cache is stored; restarts the service. Upon completion of these actions, the result will be displayed on the screen as in the picture below.

    Before us is a report: what the tool found, what it fixed

  5. Close the fix tool and try to install updates again.

So, to manage automatic system updates for a simple user, they are available as standard Windows tools and third party utilities, which are simple and straightforward to operate. It is impossible to say unequivocally whether the system update brings benefits or harm - for everyone it is subjective. But, nevertheless, it will never be superfluous to customize automatic updates for the peculiarities of your computer. The main thing is to follow the instructions and do not forget that you always work with system files and services at your own peril and risk.

An important component of Windows is the Update Center, which regularly checks for new system drivers and packages. If a new one is found, then Windows informs about it by displaying a text notification. Many users treat such messages with disdain. But you should not ignore them, unless there are good reasons for this, since when updating the OS, system errors of various kinds are eliminated and the stability and security of the system as a whole increases.

We all know that all operating systems of the Windows family: XP, Vista, 7, 8 are able to update automatically. At the same time, the parameters of how to update can be configured manually if you have administrator rights. However, you can also check and install updates not automatically, but manually.

When updating manually, you can choose which packages to install and which not. This opportunity allows you to install only what you need at the moment, and not install unnecessary (for example, additional languages). This is very convenient when the Internet is limited: low speed or limited traffic.

In Windows 10, the update situation looks different: it is almost impossible to refuse updates, even if you really need it. Microsoft developers left at least standard settings system updates. And in Windows versions 10 Home, there is no such possibility at all - the system is always updated! Someone can benefit from such a situation, but if you have limited traffic, and updates, in general, are not needed, then this approach will "eat" your Internet even 80% unnecessarily. Here, it is better to completely disable all auto-updates, but doing this in Windows 10 is not as easy as it was in previous versions.

It is worth noting that some updates designed to fix problems in the operating system slow down the computer. And it is not always possible to get rid of them by rolling back to the last checkpoint. And this is perhaps another reason not to update, as Windows 10 offers.

Below you will find different variants How to turn off automatic updates in Windows 10.

Allows you to completely disable updates or customize them as you like. Suitable only for building Windows 10 Pro, because there is a limitation in Windows 10 Home, and you cannot change Group Policy there. For "Home" see the option to change the registry.

Feature: unlike the option with disabling the "Windows Update" service, so you can start updates manually.

This option allows you to configure updates at a low level, not through the familiar interface. This is the most flexible option because it has a wide range of settings.

An important point: change result group policy you will not see immediately. Those. after changes and system reboot, in the parameters " Windows Update> Advanced Options"Everything will be the same: update option" Automatically (recommended) ", will be, as before, in place. To see the changes, you need to run the update check once. This happens because the policy settings are checked immediately before the update starts, which is logical - when needed, then it is checked ...

Complete disabling of auto-refresh (instruction)

Let's open the Local Group Policy Editor. For this:

  1. click " Windows + R "> we enter “ gpedit.msc»> Press Enter> see the editor window and go to the section in the left column:
  2. « Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update«

On the right side, we find the item " Configuring Automatic Updates»And open it with a double click.

We see an additional settings window. We select in this window the item " Disabled"And click" OK«:

Ready! Now, to make sure everything is working, go to the update center and launch updates, then go to " Extra options"And see:

Such disabling through Group Policy adds an entry to the registry, the addition of which is described in the option with changing the registry ...

Other options for changing local Group Policy

In the additional settings window, you can select the item " Included"And in activated block « Options»Choose one of the options from the drop-down list:

Description of each item:

Option 2. Modifying the registry

This option completely disables auto-updates, as if in earlier versions you have set the option: " Don't check for updates". As opposed to disabling the service, you can manually trigger updates. Does the same as changing the local policy, if you select the type " Disabled“, But for the build of Windows 10 Home, the local policy is not available and changing the registry will be the solution to the problem.

Despite the fact that update management was disabled, the essence remains the same - under the hood, everything is also configurable, but now through the registry.

  1. Open the registry editor:
    Press "Windows + R"> enter "regedit"> press Enter> see the registry editor and go to the section there:
    HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows
  2. In this section, create the "WindowsUpdate" section, and inside it the "AU" section. We go to the created section. As a result, we should be here:
    HKEY_LOCAL_MACHINE \ SOFTWARE \ Policies \ Microsoft \ Windows \ WindowsUpdate \ AU
  3. Next, create a key of type "DWORD" with the name "NoAutoUpdate" and value "1" (enabled):

Done, automatic updates disabled!

To check, go to “ Windows Update", Launch updates and go to" Extra options", And we see the installed option" Don't check for updates (not recommended)«:

If you need to return everything back, then simply set the value of the "NoAutoUpdate" key to zero - "0".

Option 3. Disable Windows Update Service

This option is the toughest and most fundamental. It is the same as the registry variant. completely disables auto-updates and in addition all possible updates .

You have probably already come across the enabling and disabling of services and you may already know how to do it. In this option, you just need to find and disable the "Windows Update" service, which is responsible for all updates in the system: no working service - no problem ...

  1. Open the service manager (servises):
    press "Windows + R"> enter the command "services.msc"> press Enter> the service manager opens:
  2. In a huge list, we find the service "Windows Update" (may be called "Windows Update"), open it with a double click.
  3. In the column " Launch type"Choose" Disabled"And save - click OK.

Ready! Now we are trying to run updates in " Windows Update"And we see error 0x80070422 - updates do not work!

Option 4. Limiting Wi-Fi internet connection

This method is only suitable if your computer or laptop connects to the Internet via Wi-Fi, and not via network cable... If you are connected via a cable, then the system automatically considers the connection to be unlimited and you simply will not have access to the settings below.

This option prohibits Windows 10 auto-updates by setting up a limited Internet connection. Those. we will tell Windows 10 that our connection is limited and a respectable system will not download new updates so as not to spoil all the raspberries for you ...

What should be done?

You need to go to: " Start> Settings> Network & Internet> Wireless networks> Advanced options", Then in the window that opens, turn on the switch for the item" Set as metered connection«:

After completing these Windows actions 10 will no longer automatically download and install updates as long as the connection is considered limited / metered.

If you still need to update system files or drivers, you need to return the switch to its place - turn off the metered connection.

Option 5. Change the settings of the Update Center

This option is only suitable for building Windows 10 Pro and will not work for Windows users 10 Home, because you cannot configure and disable updates in Home.

This option blocks most updates, but not all. In addition, the download will be delayed only for some time (1 month).

With this option, Windows will look for required drivers on LAN, without accessing the Internet to the official resource of the company. This method aims to prevent instant download and installation of service packs and automatic system restart.

In order to change the settings of the Update Center, go to " Start> Settings> Update & Security> Windows Update ", then click “ Extra options".

We select the item " Notify when a reboot is scheduled". By setting this function, you prevent the computer from automatically rebooting after the update.

Then, just below, we put a tick opposite “ Postpone updates". When turned on this parameter Update Center will stop disturbing the user within a month.

To save traffic, you need to click on the " Choose how and when to get updates", Then set the switch" Updating from multiple locations"To position" Off».

Option 6. Block Windows 10 driver updates

This option works for all builds (Home and Pro builds). Disables not all updates, but most of them.

If you want Windows not to update its drivers on its own, and everything else works, you need to take a few simple steps:

Press "Windows + R"> enter the command "rundll32 newdev.dll, DeviceInternetSettingUi"> press "Enter" or the "OK" button:

A window will open in which you need to select " No, provide a choice"And below indicate" Never install drivers from Windows Update". Save - click " Save«.

Option 7. Program for hiding updates

For Windows 10 there is special program: « Win Updates Disabler " to help the user hide unnecessary updates to the operating system or individual drivers.

First you need to download the program, run it and click on the button " Further". The process of scanning for system and driver updates will start.

When scanning is over, press the button " Hide updates"(Hide updates). The screen will display a window where the list will be presented possible updates... To hide updates and not install them in the future, you need to check the box in front of each of them. You can also return updates back: go to the program and click " Show hidden updates"(Show hidden updates), then remove the checkboxes from hidden updates.

Conclusion

Using the above methods, you can prevent automatic download and installation of drivers and service packs for Windows 10. You can use any of the listed methods or apply them together. This can be useful if any of the methods for a specific OS build is not suitable or does not work.

However, we will repeat: without an urgent need, you do not need to completely disable updates. Updates are needed, and sometimes very necessary! Windows 10 is a relatively unstable system, so patches and updates will appear constantly. And if they are not installed, it can lead to system failures, loss of information or other software problems.

Simple example: you want to change the language Windows interface from English to Russian (let's say you originally installed the English version). This is done very simply, in the language settings, but only if the updates are working. By default, there is no Russian package in the system, and if you disabled the update service, then you will not be able to install the Russian language package until the service is enabled ... And this is just one example of many ... Therefore, we we recommend that you do not disable updates through services or the registry, but use, changing group policy so that, if necessary, you can quickly, clearly and simply turn on updates ...

Everyone knows that whenever a new update is available, Windows 10 will automatically download and install it in the background. If a restart is required after an update, Windows 10 will automatically schedule an out-of-period restart.

With default settings, Windows 10 automatically checks for updates and downloads them when available. The problem is that you may notice that web pages are opening slowly while downloading updates.

Users who have high-speed Internet access may not notice the discomfort, but users with slow Internet connections often complain about this problem. It would be nice to be able to pause the current download of Windows 10 updates!

At the moment, Windows 10 does not offer an easy way to pause an ongoing update download. If, for some reason, you want to pause the download of Windows 10 updates, temporarily or permanently, you can use the tips below.

Important: We always recommend that you install updates when they become available. Windows 10 gets fixes and new features through Windows Update, it is not recommended to stop Windows updates all the time, we advise you to pause Windows updates for a short time.

Method 1 of 6

Pause the download of a Windows update using the command line.

With a few simple commands, you can turn off Windows 10 update services By following three simple commands, you can easily manage the Windows 10 update process.

Step 1: Open up command line as administrator. To do this, in the "Start" menu, start typing "Command Prompt" or "CMD", click the top result right click mouse and select "Run as Administrator". If you see a User Account Control prompt, click Yes.

Step 2: Enter the following commands one by one, and don't forget to press the key Enter after each command entered.

net stop wuauserv

It may take a while to stop the Windows Update service.

net stop bits

Stopping the background intelligent transfer service.

net stop dosvc

Stopping the Delivery Optimization Service.

Step 3: Windows Update should now pause and stop installing updates, but you can enable it at any time.

Enable download of Windows 10 Updates.

Step 1: Open a command prompt with administrator rights.

Step 2: Run the following commands to start all stopped services and resume downloading the Windows update.

  • net start wuauserv
  • net start bits
  • net start dosvc

Step 3: Go to the app " Windows settings» → « Update and Security "→" Windows Update "... You should see Windows Updates download resumed. If not, wait a while.

If Windows 10 does not automatically check for updates after they are released, you may need to clear windows update cache... Using the built-in Windows 10 troubleshooting tool for Windows Update.

Method 2 of 6

Enable Metered Connection.

Since Windows 10 does not download updates when enabled Limit connection, you can set your current internet connection as metered to pause the download of Windows updates.

Go to " Options"→ « Network and Internet"→ « Wi-Fi "or" Ethernet ", click on the current network, and then enable the option - " Set as metered connection ".

Method 3 of 6

Pause updates using the Settings app.

Windows 10 doesn't offer an easy way to pause an ongoing download of updates. Starting with Windows 10 build 14997 October 2018 Update, the system allows you to pause updates. A special option has been added to the Update & Security page of the Settings app. Once enabled, updates will be suspended for 35 days.

  1. Open the app "Options"
  2. Go to section Update & Security → Windows Update and click the link "Extra options"(see picture).

  1. On the page go to the section "Pause updates" and move the slider to the position "On".

When enabled, updates will be suspended for 35 days. If you are a Windows Insider and your PC is set to receive preview builds of the OS, updates will only be paused for 7 days. In addition, some important updates, such as definitions for Windows Defender, will continue to download and install regardless of the state of the " Pause updates».

Method 4 of 6

Disable automatic updates (do not check for updates) in Windows 10 using the registry.

Method 5 of 6

Using the Win Update Stop tool.


This tool can stop automatic updating with one click of a button. It offers an easy way to disable updates on any windows... You don't need to manually change settings or registry. With just one click, Windows 10 updates will be disabled on your computer. But you can turn them on whenever you want.

Not only Windows 10, Win Update Stop supports all versions of Windows, including Windows 8 and Windows 7. So in any version, you can stop all kinds of updates with this tool.

To disable updates, simply click the Disable button. To check that all system updates are disabled, you can go to "Options" → "Update and Security"... You will be notified that Windows was unable to download the updates, which indicates that the tool works fine on your computer.

Win Update Stop is undoubtedly a time-saver and a great handy utility for download page you can download Portable version that does not require installation.

Method 6 of 6

Using the StopUpdates10.

StopUpdates10 is a tool that needs to be installed to block Windows 10 updates. Although there is manual way disable updates. But for some users it is too difficult. Take control of Windows updates!

This utility has three interaction options:

First button "Prevent Windows Updates"- Blocks all Windows 10 updates.

Second button "Allow Windows Updates"... After pressing the button Windows Service Update works as usual.

Additional option "Pause updates" will give you the option to specify a date until which updates will be paused.

You may be interested in:


Share the article with your friends

Disabling the system upgrade feature is not a simple whim of Windows 10 users, and for some it is a vital necessity. Auto-updating Windows 10 has already pretty worn out many users, especially those who use a PC or laptop for work and not for entertainment.

Moreover, Microsoft initially claimed that they would not release updates, but they constantly come and are installed a little differently than in previous versions operating system. For example, in Windows 10 Home, the PC owner does not even know about them until the system reboots. At the same time, the system absolutely does not care what important documents the user is currently working with. This cannot cause positive reactions, so there is a lot of controversy today about the automatic update of the new Microsoft operating system.

Is it possible to turn off the auto-update of the Tens once and for all? How to avoid unplanned by the computer owner restart windows ten? These issues are detailed in this article, as well as issues related to updating device drivers.

By default, after Windows installations 10 enables automatic updating by default, but disable it in new version the operating system is more complex.

How do I turn off auto-updates?

Performing certain actions will allow you to avoid unplanned reboots by the owner of the computer during operation, as well as to delay the launch of updates for some time.

The following manipulations are required:


These manipulations will help to avoid unplanned reboots of the computer by the owner of the PC when he is working and dealing with important documents.

After that, you need to disable the activation of downloading updates not only for Windows 10, but also for other applications. And to activate deferred updates, which will make it possible to carry out updates not "in bulk", but only critical ones.

After completing these operations, you need to click on "Choose how to get updates" where to deactivate the item "Update from multiple locations"(this is especially required for PCs with low data transfer rates or limited traffic).

Disable using the system registry

It is necessary to call the editor system registry To do this, open the "Run" window and enter "regedit", then press the "Enter" key. Then find the HKLM branch and use "SOFTWARE" to reach the policy settings in Windows directories... Here you need to create a directory "WindowsUpdate" and create a directory named "AU" in it. Further in this folder through context menu create "DWORD" with the name "NoAutoUpdate", which we denote "1".

After completing the steps, you can check that they have been performed correctly. To do this, you need to log into "Update Center" and look at the section for checking them (it should be inactive). They will never be produced now.

Applying metered connection

Updates will not be performed automatically if metered connection is applied. To disable automatic installation updates are needed for your Wi-Fi. This method works successfully in all versions of the top ten.

To do this, you need to do the following:

  1. enter "Parameters";
  2. further in "Network and Internet";
  3. select the "Wi-Fi" section, where under the list of networks you need to "Extra options" and click on it;
  4. activate line "Set as metered connection"(now Windows knows that this connection is paid).

Apps to disable upgrades

The emergence of Windows 10 has caused the need to develop a significant number of applications that are able to disable the "usefulness" of Windows with index 10 that hinder users.

For example, a free and cost-free program called "Win Updates Disabler". After downloading the application, you must activate the line "Disable Windows Updates" in it with administrator rights and click on "ApplyNow".

Another similar program is called "Windows Update Blocker". The only difference from the above is that this utility is not free. But there are many more programs that make it easy to disable automatic updates in the Top Ten.

Disable automatic driver updates

Open the Run window and enter "Rundll32newdev.dll, DeviceInternetSettingUi".

Next, enter and execute the installation prohibition, then it is imperative to save the performed adjustment.

These actions will oblige the system to access only the drivers included in the installation distribution.