Hi Pn,
thank you for posting your question on the Microsoft Q&A platform the community is always happy to help.
Based on your description, the issue seems to stem from the registration process of Windows Admin Center (WAC) with Azure Stack HCI (Azure Local), particularly regarding Azure Arc integration. Although you've used the RepairRegistration parameter and reinstalled extensions, the warning persists, likely due to inconsistent or incomplete Arc registration, or a delay in status synchronization.
In simple terms, what's going on Azure Stack HCI requires a successful registration with Azure Arc. If that process isn’t fully completed or if the WAC interface doesn’t correctly reflect the current state, you’ll see a warning message. The fact that refreshing the page temporarily removes the warning suggests either session caching issues or delays in status propagation.
Check whether Azure Arc is truly enabled. Use PowerShell
Get-AzStackHCIArcSetting
or
Get-AzureStackHCI
Ensure that ConnectedToAzure is True.
Re-register the cluster using the latest Az.StackHCI module
Register-AzStackHCI -SubscriptionId <ID> -ResourceGroupName <Name> -Name <ClusterName> -Region <Region> -UseDeviceAuthentication
Update the PowerShell module
Update-Module -Name Az.StackHCI
Try configuring from the local instance of Windows Admin Center.
Some configuration steps especially initial Azure Arc setup may require using the local WAC portal. See https://learn.microsoft.com/en-us/windows-server/manage/windows-admin-center/overview
Clear browser cache or try incognito mode. Since the issue disappears on refresh, this may be a browser-side caching issue.
Microsoft Docs of that issue Enable Azure Arc on Azure Stack HCI and Register-AzStackHCI PowerShell Reference and Troubleshoot Windows Admin Center in Azure and last on is Azure Stack HCI Registration Explained
If needed, you can also check the even viewer on your management node and review the WAC logs located at %ProgramData%\Windows Admin Center\Logs.
Best regards,
Alex
P.S. If my answer help to you, please Accept my answer.
PSS That is my answer, but not a comment