Hi Michael Fowler,
In your new subscription, the Microsoft.DesktopVirtualization provider must be registered. Even if it shows as registered, sometimes unregistering and re-registering triggers the DNS control plane endpoint propagation.
Check and (Re)Register the Required Azure Resource Provider
Check registration:
az provider show --namespace Microsoft.DesktopVirtualization --query "registrationState"
If it’s Registered, unregister it:
az provider unregister --namespace Microsoft.DesktopVirtualization
Then re-register:
az provider register --namespace Microsoft.DesktopVirtualization
Wait about 2-5 minutes for registration and propagation.
and then restart the Azure VM
Once the provider is registered again:
az vm restart --resource-group <YourResourceGroup> --name <YourVMName>
This ensures the VM picks up the latest internal DNS control plane zones.
Test DNS Resolution Again
From inside your VM:
nslookup global.rdc.infrastructure.microsoft.com 168.63.129.16
As the information was helpful, please click "Upvote" and "Accept Answer" on the post to let us know.
Accepted answer will help other community members navigate to the appropriate solutions.
Thank you.