Windows update client failed to detect with error 0x80244010

WSUS Windows Update Error 0x80244010: Exceeded max server round trips

After a new WSUS server had been installed in our corporate network, many Windows clients could not receive new updates from this server with the error 0x80244010. As it turned out, this error is typical not only to the computers that are updated from the internal WSUS server, but also to the devices that receive updates directly from Windows Update servers. Let’s consider the way to fix the error 0x80244010 and restore Windows update subsystem functionality.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

To diagnose the problem, open the WindowsUpdate.log (in Windows 7 and 8.1 it is located in %Windir% folder, in Windows 10 you can generate it as follows). You will see these lines in the update log:

2018-10-04 16:10:28:661 121 2a2b2 PT WARNING: Exceeded max server round trips: 0x80244010
2018-10-04 16:10:28:661 121 2a2b2 PT WARNING: Sync of Updates: 0x80244010
2018-10-04 16:10:28:661 121 2a2b2 PT WARNING: SyncServerUpdatesInternal failed: 0x80244010
2018-10-04 16:10:28:661 121 2a2b2 Agent * WARNING: Failed to synchronize, error = 0x80244010
2018-10-04 16:10:29:042 282 2a2b2 Agent * WARNING: Exit code = 0x80244010
2018-10-04 16:10:29:042 282 2a2b2 Agent *********
2018-10-04 16:10:29:042 282 2a2b2 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
2018-10-04 16:10:29:042 282 2a2b2 Agent *************
2018-10-04 16:10:29:042 282 2a2b2 Agent WARNING: WU client failed Searching for update with error 0x80244010
2018-10-04 16:10:29:042 282 2221c AU >>## RESUMED ## AU: Search for updates [CallId = <128CCEAD-F84D-405E-9BC2-607D1694894B>]
2018-10-04 16:10:29:042 282 2221c AU # WARNING: Search callback failed, result = 0x80244010
2018-10-04 16:10:29:042 282 2221c AU # WARNING: Failed to find updates with error code 80244010

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

The most interesting line is the error “Exceeded max server round trips: 0x80244010″. It means that the maximum number of requests to the update server (WSUS) has been exceeded when scanning for updates. This is also indicated by the Windows Update error code according to the table (SUS_E_PT_EXCEEDED_MAX_SERVER_TRIPS). The server disconnects a client that has exceeded the maximum trips number. The trip limit in the Windows update receiving protocol is set on the update server and is 200 trips by default. There is also a limit on the maximum size of an XML file that a client can download from the update server during a trip – 200 KB. The greater number of updates on the server for the client to check, the larger the size of the XML file being downloaded. If a client fails to obtain the necessary data in 200 trips, it is temporary disconnected from the server and returns the error 0x80244010.

As a rule, this error occurs due to the poor or unstable network connection to the WSUS server or if a client needs to receive too many updates (it is a new WSUS server client or a computer, on which the updates haven’t been installed for a long time).

The easiest way is to click Try Again button on a client several times (3-7) in the Windows Update section of the Control Panel or run this command:

In most cases it can solve the problem, but if there are a lot of clients in your network, this method is not acceptable.

By default, a client checks the server for updates every 22 hours (actually, it is between 17.5 and 22 hours). Usually a working computer is turned off for the night, and its workday is obviously less than 17 hours. Thus, the updates search is performed once a day and it fails. And so it goes day after day.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

You can also remove the limit on the maximum XML file size that the client can download from your WSUS server. To do it, run the following command in WSUSDB database.

USE SUSDB
GO
UPDATE tbConfigurationC SET MaxXMLPerRequest = 0

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Also, if there are a lot of WSUS server clients, you can increase the performance of WsusPool according to the recommendations in the article Fixing Windows Update error 0x80244022.

If neither of the methods we have considered helped to fix the update error on a client, run the script to reset Windows Update Agent settings on it and clean up your local cache. After that, try to search for updates several times.

Источник

Windows update client failed to detect with error 0x80244010

Сообщения: 394
Благодарности: 16

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010Профиль | Отправить PM | Цитировать

:: Stopping the Windows Update services
call :print Stopping the Windows Update services.

net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc

:: Checking the services status
call :print Checking the services status.

sc query bits | findstr /I /C:»STOPPED»
If %errorlevel% NEQ 0 (
echo.Failed to stop the BITS service.
echo.
pause
goto close
)
sc query wuauserv | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
echo.Failed to stop the Windows Update service.
echo.
pause
goto close
)
sc query appidsvc | findstr /I /C:»STOPPED»
if %errorlevel% NEQ 0 (
sc query appidsvc | findstr /I /C:»OpenService FAILED 1060″
if %errorlevel% NEQ 0 (
echo.Failed to stop the Application Identity service.
echo.
pause
goto close
)
)
sc query cryptsvc | findstr /I /C:»STOPPED»
If %errorlevel% NEQ 0 (
echo.Failed to stop the Cryptographic Services service.
echo.
pause
goto close
)

:: Delete the qmgr*.dat files
call :print Deleting the qmgr*.dat files.

del /s /q /f «%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat»
del /s /q /f «%ALLUSERSPROFILE%\Microsoft\Network\Downloader\qmgr*.dat»

:: Renaming the softare distribution folders backup copies
call :print Renaming the softare distribution folders backup copies.

takeown /f %SYSTEMROOT%\winsxs\pending.xml
ren %SYSTEMROOT%\winsxs\pending.xml pending.xml.bak
ren %SYSTEMROOT%\SoftwareDistribution SoftwareDistribution.bak
ren %SYSTEMROOT%\system32\Catroot2 Catroot2.bak
ren %SYSTEMROOT%\WindowsUpdate.log WindowsUpdate.log.bak

:: Reset the BITS service and the Windows Update service to the default security descriptor
call :print Reset the BITS service and the Windows Update service to the default security descriptor.

sc sdset bits DWindows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRP WPDTLOCRRC;;;PU)
sc sdset wuauserv DWindows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRP WPDTLOCRRC;;;PU)

:: Reregister the BITS files and the Windows Update files
call :print Reregister the BITS files and the Windows Update files.

cd /d %WINDIR%\system32
regsvr32 /s atl.dll
regsvr32 /s urlmon.dll
regsvr32 /s mshtml.dll
regsvr32 /s shdocvw.dll
regsvr32 /s browseui.dll
regsvr32 /s jscript.dll
regsvr32 /s vbscript.dll
regsvr32 /s scrrun.dll
regsvr32 /s msxml.dll
regsvr32 /s msxml3.dll
regsvr32 /s msxml6.dll
regsvr32 /s actxprxy.dll
regsvr32 /s softpub.dll
regsvr32 /s wintrust.dll
regsvr32 /s dssenh.dll
regsvr32 /s rsaenh.dll
regsvr32 /s gpkcsp.dll
regsvr32 /s sccbase.dll
regsvr32 /s slbcsp.dll
regsvr32 /s cryptdlg.dll
regsvr32 /s oleaut32.dll
regsvr32 /s ole32.dll
regsvr32 /s shell32.dll
regsvr32 /s initpki.dll
regsvr32 /s wuapi.dll
regsvr32 /s wuaueng.dll
regsvr32 /s wuaueng1.dll
regsvr32 /s wucltui.dll
regsvr32 /s wups.dll
regsvr32 /s wups2.dll
regsvr32 /s wuweb.dll
regsvr32 /s qmgr.dll
regsvr32 /s qmgrprxy.dll
regsvr32 /s wucltux.dll
regsvr32 /s muweb.dll
regsvr32 /s wuwebv.dll

:: Resetting Winsock
call :print Resetting Winsock.

netsh winsock reset

:: Resetting WinHTTP Proxy
call :print Resetting WinHTTP Proxy.

netsh winhttp reset proxy

:: Starting the Windows Update services
call :print Starting the Windows Update services.

net start bits
net start wuauserv
net start appidsvc
net start cryptsvc

:: End process
call :print The operation completed successfully.

Источник

0x80244010: Исправляем ошибку обновления Windows Update

После установки нового сервера WSUS в сети нашей компании многие клиенты не смогли получить новые обновления с сервера с ошибкой 0x80244010. Как оказалось, эта ошибка характерна не только для компьютеров, обновляющихся с внутреннего сервера WSUS, но и для устройств, получающих обновления напрямую с Windows Update. Рассмотрим, основные способы исправления ошибки 0x80244010 и восстановления работоспособности системы обновлений.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

2018-04-10 18:40:38:994 828 11a3c PT WARNING: Exceeded max server round trips: 0x80244010
2018-04-10 18:40:38:994 828 11a3c PT WARNING: Sync of Updates: 0x80244010
2018-04-10 18:40:38:994 828 11a3c PT WARNING: SyncServerUpdatesInternal failed: 0x80244010
2018-04-10 18:40:38:994 828 11a3c Agent * WARNING: Failed to synchronize, error = 0x80244010
2018-04-10 18:40:39:024 828 11a3c Agent * WARNING: Exit code = 0x80244010
2018-04-10 18:40:39:024 828 11a3c Agent *********
2018-04-10 18:40:39:024 828 11a3c Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
2018-04-10 18:40:39:024 828 11a3c Agent *************
2018-04-10 18:40:39:024 828 11a3c Agent WARNING: WU client failed Searching for update with error 0x80244010
2018-04-10 18:40:39:024 828 1017c AU >>## RESUMED ## AU: Search for updates [CallId = <128CCEAD-F84D-405E-9BC2-607D1694894B>]
2018-04-10 18:40:39:024 828 1017c AU # WARNING: Search callback failed, result = 0x80244010
2018-04-10 18:40:39:024 828 1017c AU # WARNING: Failed to find updates with error code 80244010

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Наибольший интерес вызывает строка Exceeded max server round trips: 0x80244010. Т.е. превышено максимальное число обращений к серверу обновлений (WSUS) во время сканирования обновлений. Об этом же свидетельствует код ошибки Windows Update согласно таблице (SUS_E_PT_EXCEEDED_MAX_SERVER_TRIPS). Т.е. сервер отключает клиента, который превысил лимит обращений. Этот лимит обращений в протоколе получения обновлений Windows устанавливается на сервере обновлений и по умолчанию составляет 200 обращений. Также имеется лимит на максимальный размер XML файла, который клиент получает с сервера в рамках одного обращения — 200 Кб. Чем большее количество обновлений на сервере для клиента нужно проверить, тем больший размер скачиваемого XML файла. В том случае, если клиенту не удается получить необходимые данные за 200 сессий, он временно отключается от сервера и возвращает ошибку.

Эта ошибка возникает, как правило, из-за плохого или нестабильного сетевого соединения с сервером обновлений или когда клиенту нужно получить слишком большое количество обновлений (новый клиент сервера WSUS или компьютер, на котором давно не устанавливались обновлений).

Самый простой вариант попробовать на клиенте несколько раз (3-7 раз) нажать кнопку Try Again или выполнить команду

В большинстве случаев это решает проблему, но в том случае если клиентов в сети много, такой способ решения проблемы неприемлем.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Также можно на стороне сервера WSUS убрать ограничение на максимальный размер XML файла, который может скачать клиент с сервера. Для этого придется выполнить следующую команду в базе данных WSUSDB.

USE SUSDB
GO
UPDATE tbConfigurationC SET MaxXMLPerRequest = 0

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Кроме того, если клиентов сервера WSUS достаточно много, можно попробовать увеличить производительность пула WsusPool согласно рекомендаций из статьи: Ошибка обновления Windows 80244022.

Если все рассмотренные способы не помогли исправить ошибку обновления на каком-то клиенте, выполните на нем скрипт сброса текущих настроек WSUS и удаления локального кэша. После чего выполните несколько циклов поиска обновлений.

Источник

Windows update client failed to detect with error 0x80244010

Добрый день! Уважаемые читатели и гости одного из популярнейших IT блогов рунета Pyatilistnik.org. В прошлый раз мы с вами успешно устранили ошибку «Запуск этого устройства невозможен код 10». Двигаемся дальше, сегодня я столкнулся с ошибками 80244010 и C80003FB при попытке поиска обновлений Windows Server 2012 R2, в момент сервисного обслуживания терминального сервера. Ниже я покажу, как вы легко сможете их устранить, буквально за несколько минут.

Причины ошибок 80244010 и C80003FB

Прежде чем я покажу, как вы можете устранить ошибки 80244010 и C80003FB я бы хотел дать вам понимание их появления. Вот так вот выглядит ошибка с кодом C80003FB:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Далее появилась ошибка:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В итоге я видел все ту же ошибку.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Основными причинами вызывающими данную ошибку выступает:

Как устранить ошибки 80244010 и C80003FB

Можно ли удалить файл DataStore.edb?

Да вы легко можете, это сделать. Удалив DataStore.edb Windows при следующем запуске поиска обновлений просто пересоздаст его. Так же этот файл может весить очень много, например более 1 ГБ и вы легко так сможете освободить в системе некоторое количество дискового пространства

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Когда я вижу проблему с обновлениями, она в 90% случаев решается моим скриптом, который я приведу чуть ниже и дам его описание:

Del «%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat»

Ren %systemroot%\SoftwareDistribution SoftwareDistribution.bak

Ren %systemroot%\system32\catroot2 catroot2.bak

sc.exe sdset bits D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)

sc.exe sdset wuauserv D:(A;;CCLCSWRPWPDTLOCRRC;;;SY)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCLCSWLOCRRC;;;AU)(A;;CCLCSWRPWPDTLOCRRC;;;PU)

cd /d %windir%\system32

regsvr32.exe atl.dll /s

regsvr32.exe urlmon.dll /s

regsvr32.exe mshtml.dll /s

regsvr32.exe shdocvw.dll /s

regsvr32.exe browseui.dll /s

regsvr32.exe jscript.dll /s

regsvr32.exe vbscript.dll /s

regsvr32.exe scrrun.dll /s

regsvr32.exe msxml.dll /s

regsvr32.exe msxml3.dll /s

regsvr32.exe msxml6.dll /s

regsvr32.exe actxprxy.dll /s

regsvr32.exe softpub.dll /s

regsvr32.exe wintrust.dll /s

regsvr32.exe dssenh.dll /s

regsvr32.exe rsaenh.dll /s

regsvr32.exe gpkcsp.dll /s

regsvr32.exe sccbase.dll /s

regsvr32.exe slbcsp.dll /s

regsvr32.exe cryptdlg.dll /s

regsvr32.exe oleaut32.dll /s

regsvr32.exe ole32.dll /s

regsvr32.exe shell32.dll /s

regsvr32.exe initpki.dll /s

regsvr32.exe wuapi.dll /s

regsvr32.exe wuaueng.dll /s

regsvr32.exe wuaueng1.dll /s

regsvr32.exe wucltui.dll /s

regsvr32.exe wups.dll /s

regsvr32.exe wups2.dll /s

regsvr32.exe wuweb.dll /s

regsvr32.exe qmgr.dll /s

regsvr32.exe qmgrprxy.dll /s

regsvr32.exe wucltux.dll /s

regsvr32.exe muweb.dll /s

regsvr32.exe wuwebv.dll /s

netsh winsock reset

netsh winhttp reset proxy
net start bits

net start wuauserv
net start appidsvc
net start cryptsvc

Вы можете либо отдельно запускать команды, или же скачать готовый скрипт у меня и так же запустить его в командной строке от имени администратора или просто запустить его в режиме администратора.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Просмотрите, чтобы не было ошибок в выводе скрипта

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Далее я вам советую перезагрузить компьютер, иначе вы можете поймать ошибку 80244010.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Хочу отметить, что у вас в системе останется старая версия папки SoftwareDistribution по пути C:\Windows\SoftwareDistribution.bak. Так, что если проблема будет устранена, не забывайте ее удалить.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Теперь зайдя в «Центр обновления Windows» я сделал поиск новых обновлений и получил их, аж 29 штук. Ошибок 80244010 и C80003FB больше не наблюдал.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Скачивание доступных обновлений пошло успешно и они спокойно стали устанавливаться в моей Windows Server 2012 R2.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Устраняем ошибки на системных файлах

Если у вас после манипуляций с папкой SoftwareDistribution и файлом DataStore.edb остаются проблемы с поиском обновлений Windows и вы получаете ошибку C80003FB, вы можете попробовать произвести поиск и устранение ошибок на системных файлах Windows. Для этого есть две замечательные утилиты командной строки sfc и DISM. Выполните в командной строке в режиме администратора вот такую команду:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В моем примере программа защиты ресурсов Windows обнаружила повреждение файлов и успешно их восстановила. Пробуем снова найти и установить новые обновления.

Использование средства устранения неполадок Центра обновления Windows

Windows не идеальная система и Microsoft это понимает, они стараются признавать свои ошибки и помогать людям их устранять. В самые свежие версии клиентских ОС, я говорю про Windows 10 они внедрили встроенную утилиту по устранению неполадок для различных компонентов, в том числе и «Центр обновления Windows». В более старых версиях Windows 7 и Windows 8.1, а так же всех серверных Windows Server данный компонент загружается отдельно, по представленным чуть ниже ссылкам:

Напоминаю, что встроенное средство устранения неполадок в Windows 10 находится в параметрах Windows, которые вы можете открыть через сочетание клавиш Win и I одновременно. Далее вы открываете пункт «Центр обновления Windows»

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В некоторый ситуациях вы можете получить ошибку:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В других версиях Windows запустите WindowsUpdate.diagcab. И в том и в другом случае у вас появится окно, единственное в версии для Windows 10 будет дополнительный пункт «Диагностика сетей Windows«.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Выбираем пункт «Центр обновления Windows» и нажимаем далее.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

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

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Этот так же может может помочь в решении ошибок 80244010 и C80003FB.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Обновление и переустановка агента обновления Windows до последней версии

В Windows 7 и выше у вас может остаться ошибка 80244010, даже после всего того, что мы делали. Одной из экзотических причин может быть старая версия агента по обновлению Windows (Windows Update Agent). На момент января 2020 года самая актуальная версия WUA для Windows 7, это 7.6.7601.24436. Файл располагается по пути C:\Windows\System32\wuaueng.dll.

Если вам нужно его скачать для обновления или переустановки, вы можете перейти по ссылке:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Находите пункты «Stand-alone packages for Windows 8 and Windows Server 2012» или «Stand-alone packages for Windows 7 SP1 and Windows Server 2008 R2 SP1» и загружаете нужную версию.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Далее вы можете произвести установку новой версии агента. Тут два варианта из графического интерфейса или через cmd/powershell. В режиме командной строки положите файл windowsupdateagent-7.6-x64.exe в нужное Вместо, обратите внимание, что у меня семерка 64-х битная, если у вас 32-х битная, то файл будет другой (Как проверить разрядность Windows смотрите по ссылке). Далее переходите в командной строке в расположение файла через команду cd и вводите:

Если выскочит окно UAC, то нажмите да. Начнется принудительная переустановка агента по обновлению Windows.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Обратите внимание, что ваша KB будет распакована и появятся несколько временных папок.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В мониторе ресурсов будет видно, что идет обращение к папке SoftwareDistribution. Ждем когда система закончит туда писать, это около минуты.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Далее вы перезагружаете компьютер. Можно для надежности еще выполнить теперь команду для обращения к серверу обновления microsoft с синхронизацией.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Пробуем снова проверить доступность новых обновлений, и ошибка 80244010, должна исчезнуть. В графическом варианте будет простой мастер установки агента Windows Update, нажимаем далее.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Принимаем лицензионное соглашение.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

И начинается установка агента.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Использование скрипта Reset Windows Update Agent

За, что я люблю популярные продукты, так это за большое комьюнити, кто не в курсе, это объединение людей по интересу к продукту. У Microsoft оно огромное, можете для примера посмотреть статистику по операционным системам за 2019 год. Есть замечательный пользователь Manuel F. Gil, который создал отличный скрипт под названием «Reset Windows Update Agent«. Данный скрипт поможет вам в решении проблем с обновлениями. Загрузите его по ссылке:

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Распаковываете архив и утилитой SetupDiag.exe. Запустите от имени администратора файл ResetWUEng.cmd.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Вас попросят согласиться с тем, что вы даете согласие, что могут быть произведены изменения в реестре Windows или настройках системы, говорим Y.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

В итоге вы увидите окно с 19 настройками, нас будет интересовать второй пункт «Reset the Windows Update Components«. Нажимаем двойку.

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

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

Windows update client failed to detect with error 0x80244010. Смотреть фото Windows update client failed to detect with error 0x80244010. Смотреть картинку Windows update client failed to detect with error 0x80244010. Картинка про Windows update client failed to detect with error 0x80244010. Фото Windows update client failed to detect with error 0x80244010

Если все успешно, то он об этом отрапортует «The operatiom completed successfully»

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *