HI @sac16,
Adding to @Naveena Patlolla comment also try please solution
By default, Azure Update Manager and Windows Update on servers are often configured to use Windows Update, not Microsoft Update — which is required for Office updates.
If you haven’t opted in to Microsoft Update on these Server 2022 VMs, Office updates (even MSI-based) won’t be detected.
Check the setting with:
Get-WindowsUpdateSetting
Verify in Windows Update GUI > Advanced Options > “Receive updates for other Microsoft products.
Recommendations to Troubleshoot and Resolve
1.Check Microsoft Update Opt-in: Run this PowerShell to opt in to Microsoft Update:
$ServiceManager = New-Object -ComObject "Microsoft.Update.ServiceManager" $ServiceManager.ClientApplicationID = "My App" $ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
2.Manually run wuauclt /detectnow or use usoclient startscan and check if the Office updates become visible.
3.Verify Update Classifications in Azure Update Manager: Ensure that "Updates," "Security Updates," and "Update Rollups" are enabled in your update classifications for the 2022 VMs.
4.Check WSUS or Log Output: If these servers report to WSUS or if you can review logs in C:\Windows\WindowsUpdate.log (or via Get-WindowsUpdateLog), check for entries that indicate Office updates being skipped as "not applicable."
5.Try Manually Downloading One Office 2016 Update: From the Microsoft Update Catalog, download one recent Office 2016 security update and install it manually on Server 2022. If it installs without complaint, it’s a sign that metadata classification is the issue.
Please let me know if you face any challenge here, I can help you to resolve this issue further
Provide your valuable Comments.
Please do not forget to "Accept the answer” and “upvote it” wherever the information provided helps you, this can be beneficial to other community members.it would be greatly appreciated and helpful to others.