Hi @Henry Admin,
Thank you for reaching out to us on the Microsoft Q&A forum.
Based on the description, I understand your question is related to update failure.
Run command in cmd: sfc /scannow
Windows Resource Protection found corrupt files and successfully repaired them.
Run command: Dism /Online /Cleanup-Image /restoreHealth
To scan and repair potential corruption within your current Windows system image.
Create folder C:\temp\cab and download the update from Microsoft Update Catalog to C:\temp.
Expand the .msu file to extract the .cab file by running below command in CMD:
expand -F:* C:\temp\{.msu file name with extension} C:\temp\cab
You will get a .cab file from last step, use the following DISM command to add package:
Dism /online /add-package /packagepath:c:\temp\cab\{.cab file with extension}
If there is no error, reboot the machine
I will recommend you refer to this link if the issue still persists-https://answers.microsoft.com/en-us/windows/forum/all/error-update-0x800736b3/85a56759-67a7-4fe5-bb66-47fe9d03924c
If you have any further queries, do let us know.