Azure Arc Update Management

Shuvajit Roy 166 Reputation points
2023-06-14T05:29:23.5466667+00:00

I have installed update in my lab vm connected to Azure via Azure Arc. However, when I check the history from Azure portal I see that all the updates are successfully installed.

If I check from the view installed update from the control panel of the connected machine, I see no update installed. Moreover, while I see updates from the connected machine, I see update pending, Install.

Note: Server restarted multiple times after update installation from Azure portal.

Can anyone help me?
User's image

User's image

User's image

User's image

User's image

Azure Arc
Azure Arc
A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
513 questions
Azure Update Manager
Azure Update Manager
An Azure service to centrally manages updates and compliance at scale.
369 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Tech-Hyd-1989 5,816 Reputation points
    2023-06-23T20:05:38.25+00:00

    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--


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.