Hi Shaik,
From the screenshot, it appears the patch download failed via SCCM.
To resolve this, I recommend repairing system integrity first, then using DISM to manually install the patch as outlined below:
- Open the CMD with Admistrators
- Run those cmd below to restart the services and check corruptions:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth**.**
Restart the services:
net stop bits
net stop wuauserv
net stop cryptsvc
net start bits
net start wuauserv
net start cryptsvc
- Install using DISM:
- Download the target patch via this link: Microsoft Catalog Update
- Save the .msu file to C:\temp and create a folder C:\temp\cab.
- Open Command Prompt as Administrator, navigate to C:\temp, and extract the .msu using (Replace yourfile with the actual file name below): expand -f: yourfile.msu C:\temp\cab*
- Then install the extracted .cab file with (Replace yourfile with the actual file name below): Dism /Online /Add-Package /PackagePath:C:\temp\cab\yourfile.cab
After installation, if prompted, reboot the machine. Then verify the patch installation by checking the image version or running the following command:
Dism /Online /Get-Packages /format:table