Ошибка 0x800705b4 w32tm

Вы можете столкнуться с ошибкой синхронизации времени в Windows, когда ваш компьютер не может автоматически синхронизировать свое время с серверами времени time

Вы можете столкнуться с ошибкой синхронизации времени в Windows, когда ваш компьютер не может автоматически синхронизировать свое время с серверами времени time.microsoft.com в Интернете. Из-за некорректного времени на компьютере у вас может возникать ошибка «
Your clock is ahead/ Ваши Часы спешат (отстают)
» при открытии HTTPS сайтов Chrome (и в других браузерах), не корректно работать сторонние программы, и появляться различные другие неприятности.

Если попытаться вручную выполнить синхронизацию времени из панели управления Windows (Control Panel -> Date and Time -> Internet Time -> Change Settings -> Update now), появляется ошибка:

An error occurred while windows was synchronizing with time.windows.com. The peer is unreachable.

Также здесь может быть ошибка:

The peer is unresolved.

ошибка синхронизации времени с интернетом в windows

Проверьте, что у вас настроена автоматическая синхронизация времени с NTP серверами в Интернете. Перейдите в раздел Settings -> Time and Language -> Date and Time (можно перейти в этот раздел с помощью команды быстрого доступа по URI:
ms-settings:dateandtime
). Проверьте, что здесь включена опцию Set time automatically и выполните синхронизацию, нажав кнопку Sync now в разделе Additional settings.

включить синхронизацию времени

Если синхронизация времени с Интернетом не работает, проверьте, с какого внешнего NTP сервера должен получить время ваш компьютер. Выполните команду:

w32tm /query /peers

w32tm /query /peers вывести источник времени

По умолчанию компьютеры в рабочих группах (не присоединенные к домену Active Directory) настроены на получение времени с серверов time.windows.com.

Если при запуске этой команды появилась ошибка “The following error occurred: The service has not been started. (0x80070426)”, проверьте состояние службы Windows Time. Она должна быть настроена на автоматический или ручной запуск. Можете проверить состояние службы с помощью PowerShell или консоли services.msc:

Get-Service w32time| Select DisplayName,Status, ServiceName,StartType

Перезапустите службу:

Restart-Service -Name w32time

Если служба отключена, включите ее.

проверить службу времени в Windows (w32time)

Проверьте, что с вашего компьютера доступен хост time.microsoft.com.

Сначала проверьте, что ваш компьютер может разрешить это имя в IP адрес:

nslookup time.windows.com

проверить доступность time.windows.com

Если ваш компьютер не может отрезолвить это имя в IP адрес (ошибка синхронизации времени The peer is unresolved), значит в настройках сетевого адаптера вашего компьютера указан DNS сервер, который не доступен, или изолирован от интернета. Попробуйте сменить адрес первичного DNS сервера на DNS сервер Google (8.8.8.8). Можно изменить настройки DNS для сетевого адаптера в Windows с помощью PowerShell.

Вывести список сетевых интерфейсов:

Get-NetAdapter

вывести сетевые интерфейсы компьютера

Изменить настройки DNS для сетевого адаптера с ifIndex 10:

Set-DNSClientServerAddress –InterfaceIndex 10 –ServerAddresses 8.8.8.8

Проверьте доступность сервера с помощью ping:

ping time.windows.com

И затем проверьте, что сервер времени Microsoft доступен по порту NTP (UDP 123). Для проверки доступности UDP порта можно использовать утилиту portquery или можно напрямую обратиться к серверу и запросить у него текущее время:

w32tm /stripchart /computer:time.windows.com

w32tm /stripchart - проверить время на внешнем NTP сервере

Если команда вернет ошибку error: 0x800705B4, значить указанный NTP сервер не доступен. Проверьте, что в Windows открыт исходящий порт UDP/123 для протокола NTP (по умолчанию порт должен быть открыт). Вы можете принудительно открыть порт в Windows Defender Firewall с помощью PowerShell:

New-NetFirewallRule -DisplayName "AllowOutNTP" -Direction Outbound -Protocol UDP -RemotePort 123 -Action Allow
Enable-NetFirewallRule -DisplayName AllowOutNTP

Также убедитесь, что исходящий NTP трафик не блокируется на сетевом уровне (провайдера, вашего файервола или другими сетевыми устройствами).

Если этот NTP сервер не доступен, вы можете использовать другой NTP сервер.

Можно указать
time.nist.gov
или ближайший к вам NTP сервер, который можно получить на сайте
https://www.ntppool.org
.

Можно изменить адрес вашего NTP сервера с помощью командной строки:

w32tm /config /manualpeerlist:time.nist.gov,0x1 /syncfromflags:manual /reliable:yes /update

Перезапустите службу времени (в данном примере вы запустим несколько команд в одну строку):

net stop w32time && net start w32time

Затем выполните синхронизацию времени:

w32tm /config /update
w32tm /resync

Проверьте, что ваш компьютер успешно получил время с нового источника времени (NTP сервера):

w32tm /query /status

w32tm /query /status - проверить синхронизацию времени

Если ничего не помогло, попробуйте полностью сбросить настройки службы Windows Time:

net stop w32time
w32tm /unregister
w32tm /register
net start w32time

Выполните синхронизацию времени:

w32tm /resync

Также вы можете добавить NTP сервер в список серверов времени и выполнить синхронизацию из панели управления Windows. Перейдите в Settings -> Time & language -> Date & time -> Additional clocks –> Internet Time

Убедитесь, что включена опцию Synchronize with an Internet time, добавьте новый сервер time.nist.gov и нажмите кнопку Update Now.

список NTP серверов в Windows

Вы можете добавить NTP сервера в этот список через реестр HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionDateTimeServers.

ntp сервера в реестра windows

Для автоматической синхронизации времени в Windows используется отдельно задание в планировщике Task Scheduler. Запустите консоль taskschd.msc и перейдите в раздел Task Scheduler (Local) -> Task Scheduler Library -> Microsoft -> Windows -> Time Synchronization. Проверьте, что задание SynchronizeTime включено.

задание планировщика SynchronizeTime

Также вы можете проверить состояние задания Task Scheduler с помощью PowerShell:

Get-ScheduledTask SynchronizeTime

Чтобы включить его:

Get-ScheduledTask SynchronizeTime|Enable-ScheduledTask

Добрый день, у меня такая ситуация:

1 — Контроллер домена на Windows 2012R2 установлен под Hyper-V. Синхронизация времени с хост-машиной отключена в настройках Hyper-V.

2 — Служба времени настроена на синхронизацию с time.windows.com. Синхронизация проходит успешно. Время устанавливается верное.

3 — Спустя некоторое время — примерно 3-10 часов синхронизация пропадает причём сразу с большим отклонением. Выглядит этот момент при просмотре w32tm /stripchart вот так:

19:30:21 d:+00.1562053s o:-00.0060870s  [                           *                           ]
19:30:23 d:+00.1562036s o:-00.0087478s  [                           *                           ]
19:30:26 d:+00.1405838s o:-00.0028829s  [                           *                           ]
19:30:28 d:+00.1562042s o:-00.0165053s  [                           *                           ]
19:30:30 d:+00.1562047s o:+00.0011595s  [                           *                           ]
19:30:32 d:+00.1405899s o:+00.0030170s  [                           *                           ]
19:30:34 d:+00.1561969s o:-00.0131250s  [                           *                           ]
19:30:36 d:+00.1405128s o:-00.0044379s  [                           *                           ]
19:30:39 d:+00.1718294s o:-00.0064479s  [                           *                           ]
19:30:41 d:+00.1561624s o:-00.0101792s  [                           *                           ]
19:30:43 d:+00.1562029s o:-00.0058196s  [                           *                           ]
19:30:45 d:+00.1405988s o:-00.0095212s  [                           *                           ]
19:31:16 ошибка: 0x800705B4
19:31:19 d:+00.1562099s o:+42.8240319s  [                           |                          @]
19:31:21 d:+00.1405866s o:+42.8289400s  [                           |                          @]
19:31:23 d:+00.1405062s o:+42.8209113s  [                           |                          @]
19:31:25 d:+00.4685487s o:+42.9707821s  [                           |                          @]
19:31:28 d:+00.1563300s o:+42.8241157s  [                           |                          @]
19:31:30 d:+00.1561275s o:+42.8214140s  [                           |                          @]
19:31:32 ошибка: 0x800705B4
19:31:35 d:+00.1562050s o:+42.8275786s  [                           |                          @]
19:31:37 d:+00.1563012s o:+42.8327392s  [                           |                          @]
19:31:39 d:+00.1405906s o:+42.8254907s  [                           |                          @]
19:31:42 d:+00.1561160s o:+42.8230155s  [                           |                          @]
19:31:44 d:+00.1562584s o:+42.8194146s  [                           |                          @]
19:31:46 d:+00.1561335s o:+42.8188219s  [                           |                          @]
19:31:48 d:+00.1561395s o:+42.8203429s  [                           |                          @]

При этом вывод w32tm /query /status сообщает о регулярной, успешной плановой синхронизации всегда, вне зависимости от того произошел сдвиг или нет:

17:39
Индикатор помех: 0(предупреждений нет)
Страта: 3 (вторичная ссылка - синхронизирована с помощью (S)NTP)
Точность: -6 (15.625ms за такт времени)
Задержка корня: 0.2030642s
Дисперсия корня: 0.0876632s
Идентификатор опорного времени: 0x68299644 (IP-адрес источника:  104.41.150.68)
Время последней успешной синхронизации: 17.12.2015 16:41:50
Источник: time.windows.com,0x9 
Интервал опроса: 8 (256s)

Вручную с помощью w32tm /resync время всегда синхронизируется успешно и встаёт на место, но потом всё повторяется. В журнале ошибок нет, кроме ошибок Hyper-V с кодом 12 и 13 об отключении/включении сетевого адаптера в
виртуальной машине.

По логу видно, что каждый раз сбою предшествует ошибка:

19:31:16 ошибка: 0x800705B4

Она бывает часто и бывает, что и не ведёт к такому сбою времени, но когда он есть, она ему предшествует. Корреляция 100%. И так же в этот момент есть ошибки 12 и 13 от Hyper-V.

Насколько я понимаю — это может быть ошибка таймаута связанная с долгим ответом NTP-сервера, которое в свою очередь может быть вызвано вот этим отключением адаптера Hyper-V, но меня удивляет почему
не происходит восстановление с последующей ресинхронизацией когда связь есть и ресинхронизируется только вручную.

Прошу помощи у сообщества!

Обновление:

Нашел информацию что возможно источником ошибок отключения/включения сетевого адаптера Hyper-V, который непосредственно предшествуют рассинхронизации (evenid 12 и 13) становится работа антивирусного ПО на хост-системе. Такое ПО действительно
есть.

В соответствии со статьёй https://support.microsoft.com/en-us/kb/961804 добавлены требуемые исключения.

Буду наблюдать пока.

  • Изменено

    21 декабря 2015 г. 6:44

Обновлено 16.12.2019

Ошибка 0x800705b4Добрый день уважаемые читатели и гости блога Pyatilistnik.org, в прошлый раз я вам рассказал, как решается ошибка 0х80070216 в операционной системе Windows 10, сегодня очередная проблема, при попытке получить свежее обновление Fall Creators Update и носит она вот такой код, 0x800705b4. В интернете много мануалов по данной теме, но большинство из них это просто вода описанная на 10 страниц, я вам покажу реальный метод, который отнимет у вас не более нескольких минут и он работает в 99 процентах случаев.

Ошибка обновления 0x800705b4

И так у моего приятеля есть Windowsw 10 релиз 1511, уведев, что Microsoft выпустила новую версию своей операционной системы, он попытлся до него обновиться и в момент скачивания, он получил ошибку 0x800705b4.

0x800705b4

При попытке повторить скачивание обновления, ошибка воспроизводилась.

Как исправить ошибку 0x800705b4

Сразу покажу, в чем проблема у данной заразы. Все дело в том, что в вашей системе поврежден ряд, системных файлов и компонентов Windows, которые требуют восстановления, чем мы и займемся.

В моем случае и в 99% это поврежденные файлы, которые лечатся утилитой sfc. Откройте командную строку cmd от имени администратора.

Как видите по результатам сканирования систмеы, у меня появилось предупреждение.

Программа защиты ресурсов Windows обнаружила поврежденные файлы, но ек может восстановить некоторые из них. Подробные сведения см. в файле CBS.Log, который находится по следующему пути: windirLogsCBS.log. Например, в настоящее время не поддерживается для автономного обслуживания

Как исправить ошибку 0x800705b4

Наши опасения подтвердились и ошибка обновления Windows 10 обнаружена, повреждены системные файлы. В итоге ошибка windows 0x800705b4 исправляется одной командой:

Если найдутся какие либо проблемы, то выполните команду по восстановлению:
dism /online /Cleanup-Image /RestoreHealth

Если данная команда не помогла, то попробуйте перерегистрировать библиотеку wups2.dll.

  • net stop wuauserv (Производим остановку службы обновления Windows 10).
  • regsvr32 %WinDir%Sistem32wups2.dll.
  • net start wuauserv (Производим запуск службы обновления Windows 10)

код ошибки 0x800705b4 windows 10

Заходим снова в центр обновления Windows и пробуем найти свежие апдейты. Как видите у меня все завелось.

Устранена ошибка 0x800705b4

Альтернативные причины ошибки 0x800705b4

И так рассмотрим альтернативные методы решения.

  • Проверьте не идет ли в этот момент скачивания каких либо данных в браузере или раздаче торрента, которая отъедает всю скорость вашего интернет соединения.
  • Ваш роутер может подвиснуть или на нем может зависнуть сессия, особенно на старых Dir-100. Как лечится, простой перезагрузкой.
  • Бывает небольшой процент ситуаций, что вам необходимо выключить все ваши внешние устройства, принтеры, флешки, съемные диски
  • Попробуйте отключить антивирус
  • Попробуйте обновить драйвера устройства, может быть проблема в кривом драйвере.
  • Воспользуйтесь утилитой Windows Update Troubleshooter (Средство устранения неполадок Центра обновления)

https://support.microsoft.com/ru-ru/help/4027322/windows-update-troubleshooter

Либо с моего сайта, скопировав ссылку в браузер https://cloud.mail.ru/public/5Fr4/5Nauv83fT

windows 10 0x800705b4

Запускаете ее и следуете по мастеру устранения проблем, по результатам которого либо у вас исправиться ошибка 0x800705b4, либо вы получите новую, которую можно исправить соответствующими методами, однозначной ошибки нет, все зависит от конфигурации. Выбираете «Центр обновления Windows»

Диагностика неполадок

У вас начнется поиск проблем.

Исправление ошибки обновления Windows 10

Как видите утилита отработала, исправила код ошибки 0x800705b4 и предлагает скачать обновление Windows 10.

как я исправил 0x800705b4

Надеюсь, что данная заметка вам помогла обновиться до последних заплаток безопасности.

Try resetting Windows Update components

by Ivan Jenic

Passionate about all elements related to Windows and combined with his innate curiosity, Ivan has delved deep into understanding this operating system, with a specialization in drivers and… read more


Published on November 23, 2022

Reviewed by
Alex Serban

Alex Serban

After moving away from the corporate work-style, Alex has found rewards in a lifestyle of constant analysis, team coordination and pestering his colleagues. Holding an MCSA Windows Server… read more

  • Microsoft constantly releases updates for the Windows 10 OS across all major versions.
  • These usually bring fixes, new features, and much-needed security improvements.
  • Update issues trigger the error code 0x800705b4, and the steps outlined will fix it.

XINSTALL BY CLICKING THE DOWNLOAD FILE

To fix various PC problems, we recommend Restoro PC Repair Tool:
This software will repair common computer errors, protect you from file loss, malware, hardware failure and optimize your PC for maximum performance. Fix PC issues and remove viruses now in 3 easy steps:

  1. Download Restoro PC Repair Tool that comes with Patented Technologies (patent available here).
  2. Click Start Scan to find Windows issues that could be causing PC problems.
  3. Click Repair All to fix issues affecting your computer’s security and performance
  • Restoro has been downloaded by 0 readers this month.

The Windows Update feature is quite advanced; however, occasionally, some errors may crop up. The 0x800705b4 error is one such example.

The full message reads: There were some problems installing updates, but we’ll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: (0x800705b4).

0x800705b4 can be quite problematic since it will prevent your system from updating. Nevertheless, every issue has a solution, and we’ll try and resolve it for you today.

What does error code 0x800705b4 mean?

This 0x800705b4 error appears in Windows systems and affects Window’s ability to perform updates. A few elements trigger it, and on the top of this list, we have the following:

  • Malware – When the device is infected with malware or viruses can trigger this update error.
  • Bad system files – Users have noted that damaged or corrupted Windows system files may trigger the error.
  • Wrongly applied updates – Sometimes, downloading or installing corrupt Windows updates will also trigger the error.

Regardless of the cause, you should be able to resolve the error using one of the solutions we shall cover.

How can I fix the error 0x800705b4?

In this article

  • What does error code 0x800705b4 mean?
  • How can I fix the error 0x800705b4?
  • 1. Reset Windows Update components
  • 2. Perform SFC and DISM scans
  • 2.2 Running an SFC scan
  • 2.2 Running a DISM scan
  • 3. Check and disable your antivirus software
  • 4. Make sure that the Windows Defender service is running
  • 5. Change Windows Update settings
  • 6. Perform chkdsk scan
  • Where else can the error 0x800705b4 be seen?

1. Reset Windows Update components

  1. Right-click on the Start and open Command Prompt (Admin).
  2. In the command line, type the following commands and press Enter after each command:
    • net stop bits
    • net stop wuauserv
    • net stop appidsvc
    • net stop cryptsvc
  3. After you stopped the related services, the next step is erasing a particular file.
  4. In the command line, type the following command and press Enter:
    Del "%ALLUSERSPROFILE%ApplicationDataMicrosoftNetworkDownloaderqmgr*.dat"
  5. After that, we move on to the next command: 
    cd /d %windir%system32
  6. Now you’ll have to restart all of the BITS files. Type the following commands and press Enter after each command:
    • regsvr32.exe oleaut32.dll
    • regsvr32.exe ole32.dll
    • regsvr32.exe shell32.dll
    • regsvr32.exe initpki.dll
    • regsvr32.exe wuapi.dll
    • regsvr32.exe wuaueng.dll
    • regsvr32.exe wuaueng1.dll
    • regsvr32.exe wucltui.dll
    • regsvr32.exe wups.dll
    • regsvr32.exe wups2.dll
    • regsvr32.exe wuweb.dll
    • regsvr32.exe qmgr.dll
    • regsvr32.exe qmgrprxy.dll
    • regsvr32.exe wucltux.dll
    • regsvr32.exe muweb.dll
    • regsvr32.exe wuwebv.dll
    • regsvr32.exe atl.dll
    • regsvr32.exe urlmon.dll
    • regsvr32.exe mshtml.dll
    • regsvr32.exe shdocvw.dll
    • regsvr32.exe browseui.dll
    • regsvr32.exe jscript.dll
    • regsvr32.exe vbscript.dll
    • regsvr32.exe scrrun.dll
    • regsvr32.exe msxml.dll
    • regsvr32.exe msxml3.dll
    • regsvr32.exe msxml6.dll
    • regsvr32.exe actxprxy.dll
    • regsvr32.exe softpub.dll
    • regsvr32.exe wintrust.dll
    • regsvr32.exe dssenh.dll
    • regsvr32.exe rsaenh.dll
    • regsvr32.exe gpkcsp.dll
    • regsvr32.exe sccbase.dll
    • regsvr32.exe slbcsp.dll
    • regsvr32.exe cryptdlg.dll
  7. After those, restart Winshock with this command and press Enter
    netsh winsock reset
  8. Now you’ll need to start up stopped services; type these commands and press ENTER after each:
    • net start bits
    • net start wuauserv
    • net start appidsvc
    • net start cryptsvc
  9. Close Command Prompt and restart the PC.

2. Perform SFC and DISM scans

2.2 Running an SFC scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. In the command line, type the following script and hit Enter.
     sfc /scannow
    Windows 10 activation error 0x800705b4
  3. After a few minutes, your issue should be resolved.

If SFC scan didn’t fix the problem, or if you couldn’t run the SFC scan, you might be able to solve the problem by running a DISM scan.

2.2 Running a DISM scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. In the command line, type the following script and hit Enter.
    DISM /Online /Cleanup-Image /RestoreHealth

According to users, sometimes issues with file corruption can cause error 0x800705b4 to appear. File corruption can occur for various reasons, but you might be able to fix the problem simply by performing an SFC scan.

Once the scan is finished, check if the issue is resolved. If you could not run an SFC scan before, or if the problem persists, try running the SFC scan once again and check if that helps.

3. Check and disable your antivirus software

  1. Click on the hidden access arrow in the Taskbar.
    0x800705b4
  2. Click on your antivirus icon, hover over Avast shields Control and select Disable for 10 minutes (This step varies for different antivirus software).

According to users, sometimes update error 0x800705b4 can appear due to your antivirus software. Having a good antivirus is important, but sometimes your antivirus can interfere with your system and cause this error to appear.

You can try disabling certain antivirus features to fix the problem and check if that helps. If the issue is still there, you might want to try disabling your antivirus completely.

Some PC issues are hard to tackle, especially when it comes to corrupted repositories or missing Windows files. If you are having troubles fixing an error, your system may be partially broken.
We recommend installing Restoro, a tool that will scan your machine and identify what the fault is.
Click here to download and start repairing.

In the worst-case scenario, you might have to uninstall your antivirus to solve this problem completely. Many users reported that McAfee Firewall caused this issue, so if you’re using it, be sure to disable it or delete it.

Even if you remove your antivirus, there’s no need to worry about your safety since Windows 10 comes with Windows Defender, which acts as a default antivirus.

If removing the antivirus solves the problem, it might be a good idea to consider switching to a different tool. You can find several Windows 10-compatible antivirus software that won’t interfere with your system.

4. Make sure that the Windows Defender service is running

  1. Press Windows Key + R and type services.msc, hit Enter, or click OK.
    Windows 10 activation error 0x800705b4
  2. When the Services window opens, check if Windows Defender Firewall and Windows Defender Antivirus Service are running.
  3. If needed, you can check their properties simply by double-clicking them.
    0x800705b4 Windows 7
  4. Now check if the services are running. If not, click the Start button. In addition, set Startup type to Automatic. Now click Apply and OK to save changes.
    Windows Server 2016 update error 0x800705b4

To download updates, certain services need to be running on your PC. Regarding services, users reported that update error 0x800705b4 could occur if Windows Defender service isn’t running, so be sure to enable it.

5. Change Windows Update settings

  1. Press Windows Key + I to open the Settings app.
  2. When the Settings app opens, navigate to Update & Security section.
    Windows Server 2016 update error 0x800705b4
  3. Navigate to Advanced options.
    0x800705b4 Windows 7
  4. Disable Give me updates for other Microsoft products when I update Windows option.
    Windows Server 2016 update error 0x800705b4
  5. After doing that, restart your PC.

According to users, sometimes this update error 0x800705b4 can occur due to your settings. Once your PC restarts, try downloading updates again and check if the problem is still there.

Read more about this topic

  • 5+ best Windows update repair tools for Windows 10/11
  • Some update files are missing or have problems
  • How to fix Windows 11 update error 0x80070422
  • Full Fix: Windows 10/11 automatic update problems
  • We couldn’t complete the Updates/Undoing changes

6. Perform chkdsk scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. When Command Prompt starts, the script below and hit Enter (be sure to replace X with your system drive, by default, that should be C).
    chkdsk /f X
    Windows 10 activation error 0x800705b4
  3. You’ll get a message asking you to schedule a system scan at the next restart. Enter Y and press Enter to confirm.

According to users, file corruption is a common cause for update error 0x800705b4. If your files are corrupted, that can cause this and other errors to occur.

However, you can try to fix the issue with file corruption simply by performing a chkdsk scan.  Now chkdsk scan will start once you restart your PC. When the scan is finished, check if the problem is still there.

Read more about this topic

  • 9 Best Windows Utilities to Tune-Up your PC [2023 Updated]
  • How to Get to Advanced System Settings on Windows 10
  • How to Change Boot Logo on Windows 10
  • A Debugger has Been Found Running in Your System: 3 Fixes

Where else can the error 0x800705b4 be seen?

Speaking of errors, users reported sights of this stop code in various scenarios. Let’s check them out.

  • Windows Server 2016 update error 0x800705b – This issue can appear on Windows Server 2016, and if you encounter it, you should be able to fix it using one of our solutions.
  • Windows 10 activation error 0x800705b4/We can’t activate Windows on this device right now 0x800705b4 – The last product key you entered can t be used on this copy of Windows 0x800705b4 is preventing them from activating their Windows license.
  • 0x800705b4 Windows 7 – This problem can affect older versions of Windows, and even if you don’t use Windows 10, you should be able to apply almost all of our solutions to the older versions of Windows.
  • 0x800705b4 error code Xbox – Frequently encountered on Warzone, Modern Warfare, and more Xbox games.
  • Microsoft Store error 0x800705b4 – Download failed for content under context System, error 0x800705b4.
  • Your device is missing important security and quality fixes 0x800705b4 – Problematic updates can trigger the Your device is missing important security and quality fixes message, so you might want to identify and uninstall them.

That is as far as we will go with this article. The presented solutions will work for 0x800705b4 SCCM, 0x800705b4 Minecraft, and 0x800705b4 Windows 10 and 11 errors.

These were our workarounds for this issue. If you have any questions or suggestions, feel free to tell us in the comments.

Still having issues? Fix them with this tool:

SPONSORED

If the advices above haven’t solved your issue, your PC may experience deeper Windows problems. We recommend downloading this PC Repair tool (rated Great on TrustPilot.com) to easily address them. After installation, simply click the Start Scan button and then press on Repair All.

newsletter icon

Newsletter

Try resetting Windows Update components

by Ivan Jenic

Passionate about all elements related to Windows and combined with his innate curiosity, Ivan has delved deep into understanding this operating system, with a specialization in drivers and… read more


Published on November 23, 2022

Reviewed by
Alex Serban

Alex Serban

After moving away from the corporate work-style, Alex has found rewards in a lifestyle of constant analysis, team coordination and pestering his colleagues. Holding an MCSA Windows Server… read more

  • Microsoft constantly releases updates for the Windows 10 OS across all major versions.
  • These usually bring fixes, new features, and much-needed security improvements.
  • Update issues trigger the error code 0x800705b4, and the steps outlined will fix it.

XINSTALL BY CLICKING THE DOWNLOAD FILE

To fix various PC problems, we recommend Restoro PC Repair Tool:
This software will repair common computer errors, protect you from file loss, malware, hardware failure and optimize your PC for maximum performance. Fix PC issues and remove viruses now in 3 easy steps:

  1. Download Restoro PC Repair Tool that comes with Patented Technologies (patent available here).
  2. Click Start Scan to find Windows issues that could be causing PC problems.
  3. Click Repair All to fix issues affecting your computer’s security and performance
  • Restoro has been downloaded by 0 readers this month.

The Windows Update feature is quite advanced; however, occasionally, some errors may crop up. The 0x800705b4 error is one such example.

The full message reads: There were some problems installing updates, but we’ll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: (0x800705b4).

0x800705b4 can be quite problematic since it will prevent your system from updating. Nevertheless, every issue has a solution, and we’ll try and resolve it for you today.

What does error code 0x800705b4 mean?

This 0x800705b4 error appears in Windows systems and affects Window’s ability to perform updates. A few elements trigger it, and on the top of this list, we have the following:

  • Malware – When the device is infected with malware or viruses can trigger this update error.
  • Bad system files – Users have noted that damaged or corrupted Windows system files may trigger the error.
  • Wrongly applied updates – Sometimes, downloading or installing corrupt Windows updates will also trigger the error.

Regardless of the cause, you should be able to resolve the error using one of the solutions we shall cover.

How can I fix the error 0x800705b4?

In this article

  • What does error code 0x800705b4 mean?
  • How can I fix the error 0x800705b4?
  • 1. Reset Windows Update components
  • 2. Perform SFC and DISM scans
  • 2.2 Running an SFC scan
  • 2.2 Running a DISM scan
  • 3. Check and disable your antivirus software
  • 4. Make sure that the Windows Defender service is running
  • 5. Change Windows Update settings
  • 6. Perform chkdsk scan
  • Where else can the error 0x800705b4 be seen?

1. Reset Windows Update components

  1. Right-click on the Start and open Command Prompt (Admin).
  2. In the command line, type the following commands and press Enter after each command:
    • net stop bits
    • net stop wuauserv
    • net stop appidsvc
    • net stop cryptsvc
  3. After you stopped the related services, the next step is erasing a particular file.
  4. In the command line, type the following command and press Enter:
    Del "%ALLUSERSPROFILE%ApplicationDataMicrosoftNetworkDownloaderqmgr*.dat"
  5. After that, we move on to the next command: 
    cd /d %windir%system32
  6. Now you’ll have to restart all of the BITS files. Type the following commands and press Enter after each command:
    • regsvr32.exe oleaut32.dll
    • regsvr32.exe ole32.dll
    • regsvr32.exe shell32.dll
    • regsvr32.exe initpki.dll
    • regsvr32.exe wuapi.dll
    • regsvr32.exe wuaueng.dll
    • regsvr32.exe wuaueng1.dll
    • regsvr32.exe wucltui.dll
    • regsvr32.exe wups.dll
    • regsvr32.exe wups2.dll
    • regsvr32.exe wuweb.dll
    • regsvr32.exe qmgr.dll
    • regsvr32.exe qmgrprxy.dll
    • regsvr32.exe wucltux.dll
    • regsvr32.exe muweb.dll
    • regsvr32.exe wuwebv.dll
    • regsvr32.exe atl.dll
    • regsvr32.exe urlmon.dll
    • regsvr32.exe mshtml.dll
    • regsvr32.exe shdocvw.dll
    • regsvr32.exe browseui.dll
    • regsvr32.exe jscript.dll
    • regsvr32.exe vbscript.dll
    • regsvr32.exe scrrun.dll
    • regsvr32.exe msxml.dll
    • regsvr32.exe msxml3.dll
    • regsvr32.exe msxml6.dll
    • regsvr32.exe actxprxy.dll
    • regsvr32.exe softpub.dll
    • regsvr32.exe wintrust.dll
    • regsvr32.exe dssenh.dll
    • regsvr32.exe rsaenh.dll
    • regsvr32.exe gpkcsp.dll
    • regsvr32.exe sccbase.dll
    • regsvr32.exe slbcsp.dll
    • regsvr32.exe cryptdlg.dll
  7. After those, restart Winshock with this command and press Enter
    netsh winsock reset
  8. Now you’ll need to start up stopped services; type these commands and press ENTER after each:
    • net start bits
    • net start wuauserv
    • net start appidsvc
    • net start cryptsvc
  9. Close Command Prompt and restart the PC.

2. Perform SFC and DISM scans

2.2 Running an SFC scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. In the command line, type the following script and hit Enter.
     sfc /scannow
    Windows 10 activation error 0x800705b4
  3. After a few minutes, your issue should be resolved.

If SFC scan didn’t fix the problem, or if you couldn’t run the SFC scan, you might be able to solve the problem by running a DISM scan.

2.2 Running a DISM scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. In the command line, type the following script and hit Enter.
    DISM /Online /Cleanup-Image /RestoreHealth

According to users, sometimes issues with file corruption can cause error 0x800705b4 to appear. File corruption can occur for various reasons, but you might be able to fix the problem simply by performing an SFC scan.

Once the scan is finished, check if the issue is resolved. If you could not run an SFC scan before, or if the problem persists, try running the SFC scan once again and check if that helps.

3. Check and disable your antivirus software

  1. Click on the hidden access arrow in the Taskbar.
    0x800705b4
  2. Click on your antivirus icon, hover over Avast shields Control and select Disable for 10 minutes (This step varies for different antivirus software).

According to users, sometimes update error 0x800705b4 can appear due to your antivirus software. Having a good antivirus is important, but sometimes your antivirus can interfere with your system and cause this error to appear.

You can try disabling certain antivirus features to fix the problem and check if that helps. If the issue is still there, you might want to try disabling your antivirus completely.

Some PC issues are hard to tackle, especially when it comes to corrupted repositories or missing Windows files. If you are having troubles fixing an error, your system may be partially broken.
We recommend installing Restoro, a tool that will scan your machine and identify what the fault is.
Click here to download and start repairing.

In the worst-case scenario, you might have to uninstall your antivirus to solve this problem completely. Many users reported that McAfee Firewall caused this issue, so if you’re using it, be sure to disable it or delete it.

Even if you remove your antivirus, there’s no need to worry about your safety since Windows 10 comes with Windows Defender, which acts as a default antivirus.

If removing the antivirus solves the problem, it might be a good idea to consider switching to a different tool. You can find several Windows 10-compatible antivirus software that won’t interfere with your system.

4. Make sure that the Windows Defender service is running

  1. Press Windows Key + R and type services.msc, hit Enter, or click OK.
    Windows 10 activation error 0x800705b4
  2. When the Services window opens, check if Windows Defender Firewall and Windows Defender Antivirus Service are running.
  3. If needed, you can check their properties simply by double-clicking them.
    0x800705b4 Windows 7
  4. Now check if the services are running. If not, click the Start button. In addition, set Startup type to Automatic. Now click Apply and OK to save changes.
    Windows Server 2016 update error 0x800705b4

To download updates, certain services need to be running on your PC. Regarding services, users reported that update error 0x800705b4 could occur if Windows Defender service isn’t running, so be sure to enable it.

5. Change Windows Update settings

  1. Press Windows Key + I to open the Settings app.
  2. When the Settings app opens, navigate to Update & Security section.
    Windows Server 2016 update error 0x800705b4
  3. Navigate to Advanced options.
    0x800705b4 Windows 7
  4. Disable Give me updates for other Microsoft products when I update Windows option.
    Windows Server 2016 update error 0x800705b4
  5. After doing that, restart your PC.

According to users, sometimes this update error 0x800705b4 can occur due to your settings. Once your PC restarts, try downloading updates again and check if the problem is still there.

Read more about this topic

  • 5+ best Windows update repair tools for Windows 10/11
  • Some update files are missing or have problems
  • How to fix Windows 11 update error 0x80070422
  • Full Fix: Windows 10/11 automatic update problems
  • We couldn’t complete the Updates/Undoing changes

6. Perform chkdsk scan

  1. Right-click on the Start and open Command Prompt (Admin).
    0x800705b4 Windows 7
  2. When Command Prompt starts, the script below and hit Enter (be sure to replace X with your system drive, by default, that should be C).
    chkdsk /f X
    Windows 10 activation error 0x800705b4
  3. You’ll get a message asking you to schedule a system scan at the next restart. Enter Y and press Enter to confirm.

According to users, file corruption is a common cause for update error 0x800705b4. If your files are corrupted, that can cause this and other errors to occur.

However, you can try to fix the issue with file corruption simply by performing a chkdsk scan.  Now chkdsk scan will start once you restart your PC. When the scan is finished, check if the problem is still there.

Read more about this topic

  • 9 Best Windows Utilities to Tune-Up your PC [2023 Updated]
  • How to Get to Advanced System Settings on Windows 10
  • How to Change Boot Logo on Windows 10

Where else can the error 0x800705b4 be seen?

Speaking of errors, users reported sights of this stop code in various scenarios. Let’s check them out.

  • Windows Server 2016 update error 0x800705b – This issue can appear on Windows Server 2016, and if you encounter it, you should be able to fix it using one of our solutions.
  • Windows 10 activation error 0x800705b4/We can’t activate Windows on this device right now 0x800705b4 – The last product key you entered can t be used on this copy of Windows 0x800705b4 is preventing them from activating their Windows license.
  • 0x800705b4 Windows 7 – This problem can affect older versions of Windows, and even if you don’t use Windows 10, you should be able to apply almost all of our solutions to the older versions of Windows.
  • 0x800705b4 error code Xbox – Frequently encountered on Warzone, Modern Warfare, and more Xbox games.
  • Microsoft Store error 0x800705b4 – Download failed for content under context System, error 0x800705b4.
  • Your device is missing important security and quality fixes 0x800705b4 – Problematic updates can trigger the Your device is missing important security and quality fixes message, so you might want to identify and uninstall them.

That is as far as we will go with this article. The presented solutions will work for 0x800705b4 SCCM, 0x800705b4 Minecraft, and 0x800705b4 Windows 10 and 11 errors.

These were our workarounds for this issue. If you have any questions or suggestions, feel free to tell us in the comments.

Still having issues? Fix them with this tool:

SPONSORED

If the advices above haven’t solved your issue, your PC may experience deeper Windows problems. We recommend downloading this PC Repair tool (rated Great on TrustPilot.com) to easily address them. After installation, simply click the Start Scan button and then press on Repair All.

newsletter icon

Newsletter

Понравилась статья? Поделить с друзьями:
  • Ошибка 0x800705aa как исправить
  • Ошибка 0x80004005 при извлечении zip файла
  • Ошибка 0x80070571 структура диска повреждена как исправить
  • Ошибка 0x80004005 при извлечении zip как исправить
  • Ошибка 0x80070570 файл или папка повреждены чтение невозможно на флешке