Server missing from Update Manager after activating Azure benefits

RaymondKristiansen 35 Reputation points
2024-11-27T14:10:20.4466667+00:00

We activated Windows Server Azure benefits on servers recently and then they all disappeared from Azure Update Manager.

They are still available in Azure Arc, and I can trigger update assessment. If I log onto server and run azcmagent show, they are connected and no issues.

I tried deleting the server from Arc and then reonboard. That worked, the server is now available in Update Manager, but missing the benefits license. When I activate the license again the server disappears.

Is this just a bug?

Azure Arc
Azure Arc
A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
456 questions
Azure Update Manager
Azure Update Manager
An Azure service to centrally manages updates and compliance at scale.
330 questions
Windows Server Licensing
Windows Server Licensing
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Licensing: Rules, regulations, and restrictions that define how software can be used and distributed.
74 questions
0 comments No comments
{count} vote

4 answers

Sort by: Most helpful
  1. Shawn J Iverson 10 Reputation points
    2024-12-09T18:39:38.38+00:00

    It is a bug. Use this link to work around the issue until Microsoft gets it fixed.

    https://aka.ms/AUMSAFix

    This link will open the Azure Portal with the parameter "Microsoft_Azure_Automation=umflight1" in the URL. Browse to Azure Update Manager in this tab and refresh to see all your machines.

    2 people found this answer helpful.

  2. RaymondKristiansen 35 Reputation points
    2024-11-29T14:48:28.39+00:00

    This is not the problem, the problem is the query MS is using to show the Update Manager dashboard.
    Try this:

    If you go to the machines dashboard in Update Manager, then click open query you get a large predefined query that might show some machines. This is probably the same query Update manager GUI is using.

    On line 35 there should be something like:

    |where isnull(productFeatures) or productFeatures.name =~ "Hotpatch"
    

    If you add this to the line the servers now added to Azure Benefits should show up in the query

     or productFeatures.name =~ "WindowsServerAzureArcMgmt"
    

    so full code:

    |where isnull(productFeatures) or productFeatures.name =~ "Hotpatch" or productFeatures.name =~ "WindowsServerAzureArcMgmt"
    

    The query now shows every server.

    1 person found this answer helpful.

  3. Rahul Podila 805 Reputation points Microsoft Vendor
    2024-11-28T08:22:46.7466667+00:00

    Hi @RaymondKristiansen

    Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.

    I recommend checking that the Azure Arc agent on your servers is up to date. You can do this by running the command 

    azcmagent -v.
    

    If it's outdated, updating the agent could resolve the issue. Also, ensure your servers are properly registered in Azure Arc by using this command to confirm everything is connected. 

     azcmagent
    

    If the issue persists after updating the agent, try removing the servers from Update Manager and re-adding them after reactivating the Azure benefits license. You could also try onboarding the servers to Azure Arc first without activating the license, then activating it afterward to see if the servers still disappear. It’s also worth checking the logs in both Azure Arc and Update Manager for any errors that might explain what’s going wrong. 

    Note: if you're still facing the issue. please provide the screenshots so that I can guide you.

    If you have any queries related to this issue, please go through the below link:
    https://learn.microsoft.com/en-us/azure/azure-arc/servers/overview

    If you have any further queries, do let us know  

    --------------------------------------------------------------------------------------------------  
    If the answer is helpful, please click "Accept Answer" and "Upvote it" 


  4. Fongen 0 Reputation points
    2024-12-02T12:21:45.2066667+00:00

    We are having the same problem, but I am not able to save the query so that it appears correct in the Portal. I suppose that is to be considered a bug to be fixed by Microsoft?


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.