Sunday, January 03, 2021

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: (0x8024000e)

 Got the error below while trying to update Windows 10 (1607). 

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: (0x8024000e)

This can be caused by low memory condition for example if you only have 4GB. As a workaround enable automatic virtual memory management  (Automatically manage paging file size for all drives), see below.

 

This can also be caused by corrupted distribution files, fix by doing the following:

c:\> net stop wuauserv
c:\> net stop cryptSvc
c:\> net stop bits
c:\> net stop msiserver
c:\> Ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
c:\> Ren C:\Windows\System32\catroot2 Catroot2.old
c:\> net start wuauserv
c:\> net start cryptSvc
c:\> net start bits
c:\> net start msiserver

No comments:

Zig basic Windows application using win32 API

Zig basic Windows application using win32 API Info : OS: Windows 10 IoT LTSC 2021 Zig: 0.15.2 Sample application using zigwin32, Window...