код 80246008 произошла неизвестная ошибка windows update
Ошибка 0x80246008 при обновлении Windows 10 — что делать?
Ошибка 0x80246008 возникает во время загрузки или установки обновлений Windows 10. Конфликт со сторонним ПО, поврежденные системные файлы, хранилище компонентов или образ ОС, проблемы в работы служб Центра обновления — данную ошибку могут вызывать самые разные причины. В сегодняшней статье мы расскажем вам, как избавиться от 0x80246008 и продолжить пользоваться своей Windows 10 в привычном режиме.
1. Коррекция реестра системы через Командную строку
Нажмите на клавиатуре комбинацию клавиш WIN+X и выберите пункт «Командная строка (администратор)». Как только перед вами появится окошко Командной строки, пропишите в нее команду «reg add HKLM\SYSTEM\CurrentControlSet\Control\BackupRestore\FilesNotToBackup» (без кавычек, разумеется) и нажмите ENTER. После выполнения команды закройте Командную строку.
Далее нажмите на клавиатуре комбинацию WIN+R, чтобы открыть диалоговое окошко «Выполнить». В пустой строке этого окна пропишите значение «services.msc» и нажмите ENTER. Теперь найдите в представленном списке такие службы, как «Центр обновления Windows» и «Фоновая интеллектуальная служба передачи (BITS)». Выставьте следующие настройки в свойствах этих служб:
Чтобы перейти в свойства той или иной службы, достаточно дважды кликнуть на нее ЛКМ. Как только выставите нужные настройки, перезагрузите ПК и проверьте наличие ошибки 0x80246008.
2. Запуск System File Checker и DISM
К сожалению, ошибки и другие проблемы в Центре обновления Windows могут возникать из-за повреждений системных файлов, хранилища компонентов и образа ОС. Отставить панику! Все перечисленные повреждения можно устранить, задействовав SFC и DISM — невероятно полезные утилиты, созданные специально для того, чтобы возвращать ОС Windows в работоспособное состояние.
Чтобы задействовать SFC и DISM, вам нужно выполнить на своем ПК следующие действия:
Разумеется, на выполнение каждой из вышеуказанных команд уйдет кое-какое время. На все про все вам придется затратить от 15 до 40 минут — тут все будет завеситесь исключительно от вашего компьютера. Как только закончите работать с SFC и DISM, перезагрузите ПК и проверьте наличие ошибки 0x80246008.
3. Запуск средства устранения неполадок
Майкрософт знали, что пользователи будут сталкиваться с самыми разными проблемами в Windows, а поэтому они встроили в последнюю ряд особых средств, задача которых — решение неполадок тех или иных компонентов операционной системы. Вот как пользоваться этими средствами:
Важно отметить, что средство устранения неполадок не гарантирует решения ошибки 0x80246008. Тем не менее мы все-таки рекомендуем вам воспользоваться им.
4. Отключение антивируса и брандмауэра
Ошибка 0x80246008 может возникать по вине Защитника и брандмауэра Windows. Вам необходимо деактивировать оба этих системных компонента, после чего проверить, исчезла ли ошибка или нет. Как только у вас получится обновить свою ОС Windows, отключенные функции можно будет включить заново. Вот как выключить Защитник и брандмауэр:
Запустите обновление Windows 10 и проверьте наличие ошибки 0x80246008.
5. Полный сброс компонентов Центра обновления
Если ничего из вышеуказанного не помогло вам избавиться от ошибки 0x80246008, то с вашим Центром обновления явно что-то не так. Возможно, некоторые его компоненты были повреждены и начали работать некорректно. К счастью, из такой непростой ситуации можно выпутаться, выполнив так называемый сброс компонентов Центра обновления.
Существует два варианта такой процедуры: ручная и полуавтоматическая. Мы посмотрим на оба варианта.
Ручной сброс Центра обновления
Полуавтоматический сброс Центра обновления
:: Run the reset Windows Update components.
:: void components();
:: /*************************************************************************************/
:components
:: —— Stopping the Windows Update services ——
call :print Stopping the Windows Update services.
net stop bitscall :print Stopping the Windows Update services.
net stop wuauservcall :print Stopping the Windows Update services.
net stop appidsvccall :print Stopping the Windows Update services.
net stop cryptsvccall :print Canceling the Windows Update process.
taskkill /im wuauclt.exe /f
:: —— Checking the services status ——
call :print Checking the services status.
call :print Checking the services status.
call :print Checking the services status.
call :print Checking the services status.
:: —— 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 Deleting the old software distribution backup copies.
if exist «%SYSTEMROOT%\winsxs\pending.xml.bak» (
del /s /q /f «%SYSTEMROOT%\winsxs\pending.xml.bak»
)
if exist «%SYSTEMROOT%\SoftwareDistribution.bak» (
rmdir /s /q «%SYSTEMROOT%\SoftwareDistribution.bak»
)
if exist «%SYSTEMROOT%\system32\Catroot2.bak» (
rmdir /s /q «%SYSTEMROOT%\system32\Catroot2.bak»
)
if exist «%SYSTEMROOT%\WindowsUpdate.log.bak» (
del /s /q /f «%SYSTEMROOT%\WindowsUpdate.log.bak»
)
call :print Renaming the software distribution folders.
:: —— 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.exe sdset wuauserv D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset bits D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset cryptsvc D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
sc.exe sdset trustedinstaller D:(A;;CCLCSWLOCRRC;;;AU)(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;BA)(A;;CCDCLCSWRPWPDTLCRSDRCWDWO;;;SO)(A;;CCLCSWRPWPDTLOCRRC;;;SY)S:(AU;FA;CCDCLCSWRPWPDTLOCRSDRCWDWO;;WD)
:: —— Reregister the BITS files and the Windows Update files ——
call :print Reregister the BITS files and the Windows Update files.
cd /d %SYSTEMROOT%\system32
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
regsvr32.exe /s shdocvw.dll
regsvr32.exe /s browseui.dll
regsvr32.exe /s jscript.dll
regsvr32.exe /s vbscript.dll
regsvr32.exe /s scrrun.dll
regsvr32.exe /s msxml.dll
regsvr32.exe /s msxml3.dll
regsvr32.exe /s msxml6.dll
regsvr32.exe /s actxprxy.dll
regsvr32.exe /s softpub.dll
regsvr32.exe /s wintrust.dll
regsvr32.exe /s dssenh.dll
regsvr32.exe /s rsaenh.dll
regsvr32.exe /s gpkcsp.dll
regsvr32.exe /s sccbase.dll
regsvr32.exe /s slbcsp.dll
regsvr32.exe /s cryptdlg.dll
regsvr32.exe /s oleaut32.dll
regsvr32.exe /s ole32.dll
regsvr32.exe /s shell32.dll
regsvr32.exe /s initpki.dll
regsvr32.exe /s wuapi.dll
regsvr32.exe /s wuaueng.dll
regsvr32.exe /s wuaueng1.dll
regsvr32.exe /s wucltui.dll
regsvr32.exe /s wups.dll
regsvr32.exe /s wups2.dll
regsvr32.exe /s wuweb.dll
regsvr32.exe /s qmgr.dll
regsvr32.exe /s qmgrprxy.dll
regsvr32.exe /s wucltux.dll
regsvr32.exe /s muweb.dll
regsvr32.exe /s wuwebv.dll
:: —— Resetting Winsock ——
call :print Resetting Winsock.
netsh winsock reset
:: —— Resetting WinHTTP Proxy ——
call :print Resetting WinHTTP Proxy.
:: —— Set the startup type as automatic ——
call :print Resetting the services as automatics.
sc.exe config wuauserv start= auto
sc.exe config bits start= delayed-auto
sc.exe config cryptsvc start= auto
sc.exe config TrustedInstaller start= demand
sc.exe config DcomLaunch start= auto
:: —— Starting the Windows Update services ——
call :print Starting the Windows Update services.
net start bits
call :print Starting the Windows Update services.
net start wuauserv
call :print Starting the Windows Update services.
net start appidsvc
call :print Starting the Windows Update services.
net start cryptsvc
call :print Starting the Windows Update services.
net start DcomLaunch
:: —— End process ——
call :print The operation completed successfully.
Заметка: если не можете менять расширений, активируйте соответствующую настройку в параметрах системного Проводника.
После сброса компонентов Центра обновления ошибка 0x80246008 должна будет исчезнуть.
Код ошибки обновления Windows 10 0x80246008
Ошибки обновления довольно распространены в Windows 10. Почти каждый пользователь операционной системы хотя бы один раз сталкивался с проблемой обновления.
Но все становится еще сложнее, потому что кодов ошибок так много, что пользователи не всегда могут знать, какое решение является наиболее подходящим для их проблемы.
В этой статье мы поговорим об обновлении ошибка 0x80246008 в Windows 10. Эта ошибка возникает, когда пользователи пытаются установить новое обновление через Центр обновления Windows. Поскольку установка новых обновлений является обязательной для каждого пользователя Windows 10, эту проблему необходимо решить как можно скорее.
Обновление кода ошибки 0x80246008
Ошибка обновления 0x80246008 может быть проблематичной, и, говоря об этом коде ошибки, вот несколько похожих проблем, о которых сообщили пользователи:
Действия по устранению ошибки обновления Windows 10 0x80246008:
Решение 1. Перезапустите BITS и службу журнала событий Windows.
Чтобы решить эту проблему, попробуйте перезапустить фоновую интеллектуальную службу передачи. Кроме того, вы можете попробовать перезапустить журнал событий Windows.
Процедура немного длинная, но она может исправить самые известные ошибки. Чтобы выполнить перезапуск BITS, следуйте этим инструкциям:
Следующий шаг – журнал событий Windows. А именно, чтобы исправить некоторые неисправности обновления, необходимо перезапустить эту службу. Вы можете сделать это, выполнив следующие действия:
Немногим пользователям удалось исправить проблемы с обновлением с помощью этих обходных путей. Однако, если проблема не устранена, перейдите к дополнительным решениям.
Решение 2 – Выполнить сканирование SFC
Иногда повреждение файлов может привести к появлению ошибки обновления 0x80246008. Ваша установка может быть повреждена по разным причинам, но вы можете решить проблему, просто выполнив сканирование SFC и DISM.
Для этого просто выполните следующие действия:
После завершения сканирования SFC проверьте, сохраняется ли проблема. Если проблема сохраняется, мы советуем вам выполнить сканирование DISM. Для этого выполните следующие действия:
После завершения сканирования DISM проверьте, сохраняется ли проблема. Если вы не смогли завершить или запустить сканирование SFC раньше, вы можете сделать это сейчас.
Решение 3 – настроить реестр
Если предыдущий обходной путь оказался бесполезным, попробуйте вручную вставить команду реестра. Мы советуем вам с осторожностью подходить к этим сложным операциям, поскольку они могут создать много проблем при неправильном использовании.
Итак, внимательно следуйте следующим шагам, чтобы решить вашу проблему.
Таким образом, вы должны устранить ошибку обновления. Ошибки такого рода могут возникать в неактивированной Windows, поэтому убедитесь, что вы используете подлинную и активированную систему.
Решение 4 – Проверьте свой антивирус
Если вы получаете сообщение об ошибке обновления 0x80246008, возможно, проблема в антивирусном программном обеспечении. Чтобы решить эту проблему, рекомендуется отключить несколько антивирусных функций и проверить, помогает ли это.
Если проблема не устранена, следующим шагом будет полное отключение антивируса.
Несколько пользователей сообщили, что удаление их антивируса решило проблему для них, поэтому вы можете рассмотреть это также. Если удаление антивируса решит проблему, следующим шагом будет переключение на другое антивирусное решение. Многие пользователи сообщали об этой проблеме с антивирусом Norton, но другие антивирусные инструменты могут вызывать эту проблему.
Решение 5. Запустите средство устранения неполадок Центра обновления Windows
По словам пользователей, иногда ошибка обновления 0x80246008 может возникать из-за незначительных глюков с Центром обновления Windows. Однако вы можете быстро устранить эти проблемы, запустив средство устранения неполадок Центра обновления Windows.
Для этого выполните следующие простые шаги:
После устранения неполадок проверьте, устранена ли проблема.
Решение 6 – Сброс компонентов Центра обновления Windows
Другой проблемой, которая может вызвать ошибку обновления 0x80246008, могут быть компоненты Центра обновления Windows. Иногда некоторые службы могут работать некорректно, и единственный способ решить эту проблему – сбросить их вручную.
Это относительно просто сделать, и для этого вам просто нужно выполнить следующие шаги:
После выполнения этих команд проверьте, решена ли проблема с Центром обновления Windows.
Решение 7. Загрузите обновление вручную
Иногда для исправления ошибки обновления 0x80246008 необходимо вручную загрузить и установить отсутствующее обновление.
Прежде чем вы сможете это сделать, вам нужно найти код обновления в разделе Центра обновления Windows.Код обновления имеет префикс КБ, за которым следует массив чисел, поэтому вы не сможете его пропустить. Узнав код обновления, сделайте следующее:
После загрузки обновления дважды щелкните его, чтобы установить его. После установки обновления проблема должна быть полностью решена.
Решение 8. Выполните обновление на месте
Если ошибка обновления 0x80246008 по-прежнему существует, вы можете исправить проблему, выполнив обновление на месте. Для этого просто выполните следующие действия:
После завершения процесса обновления у вас будет установлена последняя версия Windows со всеми вашими файлами и приложениями, и проблема будет окончательно решена.
Вот и все, мы надеемся, что эта статья помогла вам решить проблему с ошибкой обновления 0x80246008 в Windows 10, и теперь вы можете нормально устанавливать обновления. Если у вас есть какие-либо вопросы, предложения или другие решения, пожалуйста, сообщите нам об этом в комментариях ниже.
Код 80246008. Произошла неизвестная ошибка Windows Updste
При обновление выдает ошибку
Код 80246008 Произошла неизвестная ошибка Windows Updste.
как устранить эту ошибку?
по случаю есть такой вопрос : Можно ли переустановить винду через флеш карту?
Помощь в написании контрольных, курсовых и дипломных работ здесь.
Неизвестная ошибка в Windows 8
Привет всем, такая ситуация у меня, виндовс 8, вдруг диск Д стал пустой, более того, я на него.
Произошла ошибка windows 2 при загрузке bm java
Здравствуйте уважаемые форумчане! Произошла ошибка windows 2 при загрузке bm java. Эта ошибка.
Произошла ошибка
Впервые за день запустил пк. Выдало то, что на скриншоте, файлы прикрепляю. Файл wer-35265 не.
Вроде бы да
спасибо за второй ответ))
Помощь в написании контрольных, курсовых и дипломных работ здесь.
Произошла ошибка с PDO
Здравствуйте, пытаюсь подключиться к база данных mysql через объект класса PDO. Присвоил переменным.
В приложении произошла ошибка
Здравствуйте! Обращаюсь к вам за советом. Моё приложение тестировалось и работало на Android 4.4.
в приложении произошла ошибка
в приложении произошла ошибка.андроид 4.0.3.телефон HTC DESIRE V.в чем может быть проблема.
Fix Windows Update error 0x80246008 in Windows 10
The error code of 0x80246008 for Windows Updates can occur during different phases of an Update being downloading, installing or even when an update is initialized. Narrowing it down to a single cause, it is related to the deliverability of a file to a computer from Microsoft’s servers. Hence, these fixes can be applicable to Windows Updates as well as Microsoft Store. It can be a cause of Windows Update not even working due to conflicts from third-party programs like Antivirus and Firewall software, sometimes due to corrupt Disk Image or System Files, or either any of the supporting Windows Update components and services not working properly.
Windows Update error 0x80246008
1] Tweak the Windows Registry from Command Prompt
Start by hitting the WINKEY + X combinations and select Command Prompt (Admin) to launch Command Prompt with Administrator Privileges.
Navigate to the root location of that bootable device inside the Command Prompt command line.
Once you get there, type in the following to show the file extensions, and then hit Enter-
Now close the Command Prompt command line.
Open their Properties and ensure that their Startup type is as mentioned above against their name and that the Services are running. If not click on the Start button.
2] Use System File Checker
Open an elevated Command Prompt window and type in the following command and then hit Enter to run System File Checker:
Restart your system after the scan is completed.
You can also use our freeware FixWin to Run the System File Checker utility with a click.
3] Run the Windows Update Troubleshooters
You can run the Windows Update Troubleshooter and also Microsoft’s Online Windows Update Troubleshooter and check if that is any help in fixing any of your issues.
4] Disable your Antivirus or Firewall
You can try to temporarily disable Windows Defender which is installed out of the box on your Windows 10 computer. You can also disable your Windows Firewall on your computer and check if that fixes the errors that you are encountering. If you are using 3rd-party security software, disable them and see.
5] Reset the Windows Update folders
FIX: Windows 10 Update error code 0x80246008
Update errors are quite common in Windows 10. Almost every user of the operating system has encountered an update-related issue at least once.
But things get even more challenging because there are so many error codes that users can’t always know which is the most appropriate solution for their problem.
In this article, we’re going to talk about the update error 0x80246008 in Windows 10. This error occurs when users try to install a new update through Windows Update.
Since installing new updates is a must for every Windows 10 user, this issue needs to be addressed as soon as possible.
Update error 0x80246008 can be problematic, and speaking of this error code, here are several similar issues that users reported:
Update error code 0x80246008 variations
How can I solve Windows 10 update error 0x80246008?
1. Check your antivirus
If you’re getting the update error 0x80246008, the problem might be your antivirus software. To fix the issue, it’s advised to disable several antivirus features and check if that helps.
If the problem is still present, your next step would be to completely disable your antivirus.
Several users reported that removing their antivirus solved the problem for them, so you might want to consider that as well.
If removing the antivirus solves the problem, your next step would be to switch to a different antivirus solution.
There are many great antivirus tools on the market, but if you’re looking for one that won’t interfere with your system in any way, you should consider using VIPRE.
VIPRE is the go-to solution that works where traditional antiviruses fail. This next-generation security suite was specifically designed to provide the best protection without interfering with your system in any way.
And we are talking, of course, about unbreakable defense against common threats such as spyware, ransomware, viruses, Trojans, and emerging malware alike.
What’s more, the customization options with which you can joggle are truly impressive. Thus, VIPRE allows you to perform quick scans or schedule scans according to your choosing, search for definition updates and even personalize the manner in which these updates apply.
Let’s quickly look at its key features:
VIPRE Antivirus
The best protection and the best performance? The best combo is now achievable using this top antivirus that will secure your digital life without interfering with your system.
2. Perform SFC scan
Sometimes files corruption can cause update error 0x80246008 to appear.
Your installation can get corrupted for various reasons, but you might be able to fix the problem simply by performing both SFC and DISM scans.
To do that, just follow these steps:
Once the SFC scan is completed, check if the problem is still there. If the problem is still present, we advise you to perform a DISM scan. To do that, follow these steps:
Once the DISM scan is finished, check if the problem is still there. If you were unable to complete or run the SFC scan before, you might want to do that now.
3. Tweak the registry
In case the previous workaround proved futile, you should try and manually insert the registry command. We advise you to approach with caution to these complex operations since they can create a lot of problems if misused.
So, follow the next steps closely in order to resolve your issue.
This way you should resolve the update error. This kind of errors may occur on non-activated Windows, so be sure that you are running a genuine and activated system.
4. Restart BITS and Windows Event Log service
In order to resolve this issue, you should try restarting Background Intelligent Transfer Service. Additionally, you can try and restart Windows Event Log, too.
The procedure is a bit lengthy, but it can fix the best-known errors. To perform BITS restart, follow these instructions:
Next step is the Windows Event Log. Namely, in order to fix some of the update malfunctions, you have to restart this service. You can do that by following these steps:
Few users managed to fix update issues with these workarounds. However, if the problem persists, move on to additional solutions.
5. Run Windows Update troubleshooter
According to users, sometimes update error 0x80246008 can occur due to some minor glitches with Windows Update. However, you can fix those glitches quickly simply by running Windows Update troubleshooter.
To do that, follow these simple steps:
After the troubleshooter is finished, check if the problem is resolved.
6. Reset Windows Update components
Another problem that can cause update error 0x80246008 can be your Windows Update components.
Sometimes certain services might not be running properly, and the only way to fix the problem is to manually reset them.
This is relatively simple to do, and in order to do it, you just need to follow these steps:
After running these commands, check if the problem with Windows Update is resolved.
7. Download the update manually
Sometimes in order to fix update error 0x80246008, you need to download and install the missing update manually.
Before you can do that, you need to find the update code in the Windows Update section. The update code has a KB prefix, followed by an array of numbers, so you won’t be able to miss it.
After finding out the update code, do the following:
Once the update is downloaded, double-click it to install it. Once the update is installed, the problem should be completely resolved.
8. Perform an in-place upgrade
If update error 0x80246008 is still there, you might be able to fix the issue by performing an in-place upgrade. To do that, just follow these steps:
Once the upgrade process is finished, you’ll have the latest version of Windows installed with all your files and applications preserved, and the problem will be permanently resolved.
That’s about it, we hope this article helped you resolve the problem with update error 0x80246008 in Windows 10, and that you’re now able to install your updates normally.
If you have any questions, suggestions, or more solutions, please let us know in the comments below.