A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
Hello Dominic Brazendale
Yes. Windows Admin Center for Azure Arc–enabled servers is generally available (GA). It reached GA as part of “Windows Server Management enabled by Azure Arc”, which Microsoft announced publicly at Ignite 2024 (November 2024). Windows Admin Center is included in this GA management bundle and is supported for production use.
The confusion usually comes from the Azure portal UI and some Learn pages still showing “Preview” labels. Microsoft documentation clarifies that these labels are documentation/UI lag, not the service support status.
- Install the extension
- In the Azure portal, go to your Arc-enabled server resource, pick “Extensions,” then “Add,” and select “Windows Admin Center.”
- Or use Azure CLI:
az connectedmachine extension create \
--resource-group <RG>
--machine-name <YourArcServer>
--name AdminCenter
--publisher Microsoft.HybridCompute
--extension-type AdminCenter
```
- Check your versions
- Azure Arc agent ≥ 1.13.21320.014
- Windows Admin Center extension ≥ 0.0.0.169
- Networking requirements
- No inbound firewall ports needed—connection is via reverse proxy.
- Ensure outbound HTTPS to: • *.wac.azure.com (or WindowsAdminCenter service tag) • pas.windows.net • *.servicebus.windows.net
- Permissions
- To install: Owner/Contributor/Windows Admin Center Administrator Login on the server resource
- To connect: Reader + Windows Admin Center Administrator Login on the server resource
If you hit any snags, check out the troubleshooting steps in “Remote access with Windows Admin Center for Azure Arc–enabled servers” (restart the HIMDS service, verify incomingconnections.ports via azcmagent config list, etc.).
Reference list :
• GA announcement: https://techcommunity.microsoft.com/blog/azurearcblog/announcing-general-availability-windows-server-management-enabled-by-azure-arc/4303854
• Manage Arc-enabled servers with WAC: https://docs.microsoft.com/windows-server/manage/windows-admin-center/azure/manage-arc-hybrid-machines
• Troubleshoot connectivity: https://supportabilityhub.microsoft.com/solutions/apollosolutions/ef2f9034-de7e-dc8f-0847-fc5cbfc62860/758e5f0f-86c3-46cf-8216-be970761f01b
• WAC extension release notes: https://learn.microsoft.com/windows-server/manage/windows-admin-center/azure/extension-release-notes
Thanks,
Suchitra.