Hi Shuvajit Roy
It is possible that the update installation process is still ongoing. Sometimes, it takes a while for the updates to be fully installed and reflected in the control panel**2**. You can wait for some time and check again later to see if the updates have been installed.
If the updates are still not installed after some time, you can try restarting the machine again to see if that helps. Sometimes, a restart is required to complete the installation process.
If the issue persists, you can try running the following command in PowerShell on the connected machine to check for any pending updates:
Get-WindowsUpdate
This will show you a list of all the pending updates on the machine. You can then try installing the updates manually from the control panel or by running the following command in PowerShell:
Install-WindowsUpdate
If you are still unable to install the updates, you can try resetting the Windows Update components on the machine by running the following commands in PowerShell**1**:
Stop-Service -Name wuauserv
Stop-Service -Name cryptSvc
Stop-Service -Name bits
Stop-Service -Name msiserver
Ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
Ren C:\Windows\System32\catroot2 catroot2.old
Start-Service -Name wuauserv
Start-Service -Name cryptSvc
Start-Service -Name bits
Start-Service -Name msiserver
This will stop the Windows Update services, rename the SoftwareDistribution and catroot2 folders, and then restart the services. After running these commands, try checking for updates again and see if the issue is resolved.
If none of these steps work, it is possible that there is an issue with the update installation process. You can try contacting Microsoft support for further assistance.
--please don't forget to "[Accept the answer]" if the reply is helpful--