How to fix 0x0 error?
Have you tried googling that error?
There is lots of advice on how to fix it.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to fix 0x0 error?
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
How to fix 0x0 error?
Have you tried googling that error?
There is lots of advice on how to fix it.
Check the date and time in Taskbar.
What Anti-virus are you using. Anything other than Windows Defender, remove it using vendor removal tool
You could try doing this, put the following in a batch file then run from an Elevated Command Prompt:
@echo off
date /t & time /t
echo Dism /Online /Cleanup-Image /StartComponentCleanup
Dism /Online /Cleanup-Image /StartComponentCleanup
echo ...
date /t & time /t
echo Dism /Online /Cleanup-Image /RestoreHealth
Dism /Online /Cleanup-Image /RestoreHealth
echo ...
date /t & time /t
echo SFC /scannow
SFC /scannow
date /t & time /t
or you can run each command individually in a Elevated Command Prompt:
Dism /Online /Cleanup-Image /StartComponentCleanup
Dism /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Reboot
Regards,