Applies ToWindows 11 Windows 10
In Windows 11, if you are not ready to get recommended updates, you can pause the update from being downloaded and installed.
-
Select Start > Settings > Windows Update .
-
Select the amount of time you’d like to pause the update for.
Note: After the pause time limit is reached, you must install the latest updates.
You must restart your device to finish installing the updates. If you’re asked to restart your device while you’re busy using it, you can schedule the restart for a more convenient time:
-
Select Start > Settings > Windows Update .
-
Select Schedule the restart and choose a time that’s convenient for you.
Open Windows Update
Need more help?
Want more options?
Explore subscription benefits, browse training courses, learn how to secure your device, and more.
В современных билдах Windows 10 и 11 можно отложить установку обновлений на максимально возможный срок 35 дней (или 7 дней на сборках Windows Insider). Этого времени обычно достаточно, если первоначальная установка обновления вызвала проблему, вы удалили обновление и ждете, когда инженеры Microsoft отзовут обновление или заменят его.
Чтобы приостановить установку любых обновлений в Windows, нужно открыть приложение Параметры и перейти в раздел Windows Update. Чтобы отложить установку обновлений на 7 дней, нужно нажать кнопку Pause updates for 1 week. Либо можно выбрать другой срок в диапазоне от 1 до 5 недель (что дает максимальное время приостановки обновлений 35 дней).
Если до окончания этого периода вы так и не установили обновления, Windows автоматически скачает и установит все доступные обновления (продлить паузу в обновлениях нельзя). После чего вы сможете приостановить установку обновления еще на 35 дней.
Если кнопка приостановить обновления в панели управления неактивна (серая), откройте настройки результирующих политик GPO (команда
rsop.msc
или
gpresult
) и проверьте, не включена ли опция Remove access to ‘Pause updates’ feature.
Отключите эту политику с помощью локального редактора GPO (
gpedit.msc
), раздел Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update -> Manage end user experience.
Если политика отключена, проверьте что в ветке
HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdat
e отсутствует параметр SetDisablePauseUXAccess. Если его значение равно 1, это скрывает от пользователя возможность приостановить установку обновлений.
Можно отложить установку обновлений из командной строки, внеся несколько изменений в реестр с помощью PowerShell скрипта. В этом примере я откладываю установку обновления на 35 дней (скрипт совместим как с Windows 10 так и 11):
$pause = (Get-Date).AddDays(35)
$pause = $pause.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ")
$pause_start = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ")
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseUpdatesExpiryTime' -Value $pause
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseFeatureUpdatesStartTime' -Value $pause_start
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseFeatureUpdatesEndTime' -Value $pause
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseQualityUpdatesStartTime' -Value $pause_start
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseQualityUpdatesEndTime' -Value $pause
Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseUpdatesStartTime' -Value $pause_start
Перезапустите приложение Параметры, чтобы срок приостановки Windows Update обновился в UI.
С помощью PowerShell можно проверить до какой даты отложена установка обновлений:
Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings'| Select-Object PauseUpdatesExpiryTime
Однако есть способ поставить обновления на паузу на срок больше 35 дней. После того, как обновления были приостановлены выполните команду:
$pause = (Get-Date).AddDays(3650); $pause = $pause.ToUniversalTime().ToString( "yyyy-MM-ddTHH:mm:ssZ" ); Set-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings' -Name 'PauseUpdatesExpiryTime' -Value $pause
Это отложит обновления Windows на 10 лет (3650 дней), по сути, навсегда.
Все способы:
- Вариант 1: «Параметры»
- Вариант 2: «Командная строка»
- Вариант 3: Активация лимитного подключения
- Вариант 4: Сторонние утилиты
- Вопросы и ответы: 0
Вариант 1: «Параметры»
Операционная система от Microsoft регулярно проверяет серверы на наличие апдейтов, загружает их и устанавливает в определенное время. Приостановить обновления в Windows 10 можно через системные «Параметры» в соответствующем разделе.
- Кликните по иконке Windows на нижней панели и в меню выберите значок в виде шестерни для запуска приложения «Параметры».
- В новом окне нажмите на раздел «Обновление и безопасность».
- На вкладке «Центр обновления Windows» кликните по опции «Приостановить обновления на 7 дн.».
- Также можно выбрать и другие даты. Для этого щелкните по строке «Дополнительные параметры».
- Найдите раздел «Приостановка обновлений». Активируйте функцию с помощью тумблера, а ниже в меню можно выбрать дату, до которой обновления не будут загружаться и инсталлироваться.
По истечении выбранной даты Windows автоматически начнет проверять серверы Microsoft на наличие актуальных апдейтов.
Вариант 2: «Командная строка»
Управлять процессом обновлений Windows можно через штатный инструмент «Командная строка» и несколькими командами для приостановки некоторых функций системы:
- Откройте «Командную строку» с расширенными правами — для этого можно использовать системный поиск. В результате выберите пункт «Запуск от имени администратора».
- Чтобы остановить службу «Windows Update» пропишите команду
net stop wuauserv
, затем нажмите на клавишу «Enter». Для закрытия может потребоваться время. Для деактивации фоновой интеллектуальной службы передачи введитеnet stop bits
. После нее также нажмите на «Enter». Остановка еще одной службы – оптимизации доставки, происходит с помощью командыnet stop dosvc
.
В этом случае обновления перестанут проверяться вообще, и определение даты для возобновления работы функции не нужно. Включить загрузку и установку апдейтов можно также через «Командную строку» в любую минуту, заменив во всех трех командах слово «stop» на «start».
Вариант 3: Активация лимитного подключения
Как правило, в операционные системы обновления не устанавливаются, если для загрузки трафика из интернета есть ограничение. Включить лимитное подключение можно вручную, тогда загрузка апдейтов прекратится на время, пока используется это соединение с сетью:
- Через «Параметры» перейдите в раздел «Сеть и Интернет».
- В зависимости от того, какое подключение используется (беспроводное или проводное), выберите нужную вкладку: «Wi-Fi» или «Ethernet».
- В главном окне щелкните по названию используемого подключения.
- Активируйте функцию «Задать как лимитное подключение».
Поскольку апдейты могут довольно много весить, для экономии трафика система будет блокировать их загрузку до тех пор, пока опцию не выключить или не переключиться на другое соединение с интернетом.
Вариант 4: Сторонние утилиты
Для приостановки обновлений в Windows 10 можно использовать и сторонние программы, если предыдущие способы не подходят. Они самостоятельно вносят изменение в настройки, в том числе в реестр, избавляя таким образом от ручных манипуляций. Одной из безопасных и простых утилит является Win Update Stop. Она позволяет отключить обновление системы всего в несколько кликов:
Скачать Win Update Stop с официального сайта
- Скачайте версию «Standard» и запустите установочный файл.
- Инсталлируйте утилиту, следуя подсказкам пошагового мастера.
- В главном окне отображается надпись о состоянии функции обновлений. Если они включены, то будет сообщение «Windows Updates are enabled». Кликните на кнопку «Disable», чтобы их приостановить.
Чтобы снова включить загрузку и установку апдейтов в Windows 10, запустите утилиту, но на этот раз выберите кнопку «Enable».
Наша группа в TelegramПолезные советы и помощь
Windows 10 comes up with automatic windows updates. Though it was also available in previous versions but there was option to disable them. In the initial release of windows 10 there was no option available to disable or stop the Windows 10 updates or upgrades. But in the latest major updates provided by Microsoft have introduced a new feature to defer or pause the updates. Still you can’t stop them permanently but you can defer them or pause them. You can pause up to 35 days.
1. Pause updates from Windows update settings
Search with word ‘update’ and click on the Check for update option. Or go to Settings -> Update & Security -> Windows update.
Here you find an option to pause updates for 7 days. You can pause updates maximum up to 35 days from the current date. To change it click on the Advanced options. in the bottom, choose the date from the dropdown to pause the updates up to that date.
2. Defer updates by setting network connection as Metered
Another method is to Set your Network connection as ‘Metered‘. It will prevent Windows 10 to download the automatic updates through this network connection. And it will automatically defer defer the updates until you will connect to the another Internet connection or Wi fi.
3. Stop / Block Windows 10 Updates using show hide update tool by Microsoft
Use the Shоw оr Hіdе Uрdаtеѕ tооl provided by Mісrоѕоft to stop / block the windows 10 updates.
Download show or hide update tool by Microsoft
Click on Next. It will scan your system for updates
After scanning following screen will be displayed.
In the next screen select the updates that you don’t want to install. Hidden updates will not update.
By use of this tool you can skip the update components to disable in future updates. They will not be installed Whenever windows updates are installed. However you can un-hide them to let them install in future.
4. Using Group Policy Editor
This method is not useful for home users as Home edition of windows 10 have no option of Group Policy editing. But Pro versions can use this method. If your version of windows have Group Policy feature you can change some settings using the Group policy editor. Run gpedit command from the Run and explore the following policy settings.
Computer Configuration -> Administrative Templates -> Windows Components -> Windows Update
Double click on the Configure Automatic Updates and set the settings as per your requirement.
5. Turn off / disable Windows updates By disabling update service
The another method is using Windows update service. You can do so from the Control Panel -> Administrative Tools. Go to Services. in Services look for Windows Update and stop the process.
You can turn off it by right clicking on the process. Click on properties and select Disabled. It will disable the windows update service.
It is also useful to keep them updated because to install the newer updates you also require to update to the prior updates. So if you will later on switch on the automatic updates it may take longer time to update as it needs to be install all the prior updates.
Windows 10 updates are essential for keeping your system secure and up-to-date. However, frequent updates can sometimes be disruptive, especially when they occur at inconvenient times. If you prefer to have more control over when and how updates are applied, you might want to learn how to stop Windows 10 updates permanently.
This article will walk you through the steps to disable Windows 10 updates forever, ensuring that you can work uninterrupted without unexpected updates. So, there is no doubt that you might think of Windows 10 updates on the machine. By following our methods, you can prevent automatic updates and ensure your system remains stable and uninterrupted.
Methods To Stop Windows Update Permanently
To permanently turn off updates on Windows, the following guidelines should be used. We will start with the service application first.
Method 1: Stop Windows Update Permanently using Services
Step 1: At first, open the search box & write down services there. Now, the service option will be available, & click on it.
Step 2: A big list will appear in the next window. Search for the Windows Update option & right-click over there.
Step 3: A new popup window will be opened. From the Startup Type dropdown menu, select the Disable option. And just below it, click on the Stop button. In the end, click on the Apply button to save the changes.
Hence, we have successfully stopped Windows 10 updates using the Services on the device.
Method 2: Stop Windows Update Permanently using Group Policy
Step 1: Agin open the Search bar in Windows 10 & Search for the «gpedit.msc». Just press Enter to move ahead.
Step 2: Now, the window for the Group Policy will be opened. In the left sidebar, first, expand the Administrative Templates. And inside that, again expand the folder Windows Components.
Step 3: Now, on the right-hand side of the screen, double-click on the option Configure Automatic Update
Step 4: On the left-hand side of the screen, three-button options are present. Click on the option Disable & close the windows.
Hence, we have successfully stopped Windows 10 updates using the Group Policy on the device.
Method 3: Stop Windows Update Permanently using Register Policy
Step 1: To Stop Windows 10 from updating, run the «regedit» command in the Search Box on the device. Press Enter to move ahead.
Step 2: Now, a new window will be opened & the below-mentioned path should be followed by expanding folders on the Left Hand Side of the Screen. After reaching the endpoint of the path, Right-click on the folder Windows. Some more options will be available. Among them click on the New option.
Path: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows
Step 3: A new subfolder will be created inside the Windows folder. Give the name «WindowsUpdate».
Step 4: Inside the «WindowsUpdate» using the same process create another subfolder. And provide its name as «AU».
Step 5: On the right-hand side of the screen, right-click anywhere. Under the New option, select the option DWORD (32-bit) Value.
Step 6: Now, a new value will be added there & the value will be «NoAutoUpdate». Then press Enter to save the changes & close all the windows.
Hence, we have successfully stopped Windows 10 updates using the Register Policy on the device.
Method 4: Stop Windows Update Permanently using Task Scheduler
Step 1: To Stop Updating Windows 10, search for the Task Scheduler in the Search bar on the device. One option will be available with the same name, click on that to move ahead.
Step 2: On the left-hand side of the screen, expand the folder Task Scheduler Library. Under such folder, again expand the folder Microsoft. Inside the Microsoft folder, the Windows folder will be available.
Step 3: In the right-hand side window, a Schedule Start option is present. Right-click on the option & click on the Disable option to complete the process.
Hence, we have successfully stopped Windows 10 updates using the Task Scheduler on the device.
Method 5: Stop Windows Update Permanently by Pausing Updates
Step 1: Open the Settings. Inside the Setting window, click on the Update & Security option.
Step 2: In the next window, click on Advanced Options under the Update Settings.
Step 3: Inside the next window, the Pause Updates option will be available & enable the button. It will pause the updates in Windows 10 for 35 days.
Hence, we have successfully stopped Windows 10 updates using the Pause method on the device.
Method 6: Stop Windows Update Permanently using Metered Connection
Step 1: At first, the Settings window will be opened. Then among so many options move for the Network & Internet option. Click on it to open.
Step 2: In the next window, from the left-hand side click on the option Ethernet.
Step 3: On the next window, an option will be present as the Metered Connection. Enable the button present below.
Hence, we have successfully stopped Windows 10 updates using the Metered Connection method on the device.
Method 7: Stop Windows Update Permanently by Uninstalling Updates
Step 1: In this case also, the Setitngs of the Windows will be opened. In that window, click on the Update & Security option.
Step 2: In the next window, in the left-hand sidebar, click on the option Windows Update from so many options present there.
Step 3: After that, click on the View Update History option to move ahead.
Step 4: In the next window, click on Uninstall Updates to remove the installed updates from the device.
Hence, we have successfully stopped Windows 10 updates by Uninstalling Updates from the device.
Conclusion
By following the methods outlined above, you can stop Windows 10 updates permanently and gain greater control over your system. Whether you choose to use the Group Policy Editor, Services Manager, or a third-party tool, these solutions allow you to disable Windows 10 updates effectively. Keep in mind, however, that while disabling updates can prevent disruptions, it’s important to manually check for and install security updates to keep your system protected.