Share via

I can't create a host pool

Ioannis D. Papaioannou 0 Reputation points
2026-05-07T15:56:18.1233333+00:00

User's image

Azure Virtual Desktop
Azure Virtual Desktop

A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.


1 answer

Sort by: Most helpful
  1. Nikhil Duserla 9,775 Reputation points Microsoft External Staff Moderator
    2026-05-19T09:47:44.36+00:00

    Hey Ioannis, it looks like your host‐pool deployment is getting all the way to the VM creation but then the PowerShell DSC extension can’t pull down its config ZIP from the WVD storage endpoint:

    The DSC Extension failed to execute: Error downloading … Unable to connect to the remote server.

    That almost always means the VM can’t reach https://wvdportalstorageblob.blob.core.windows.net over HTTPS. Here’s how you can troubleshoot and fix it:

    1. Validate outbound connectivity
      • On the VM run:
        
             Test-NetConnection wvdportalstorageblob.blob.core.windows.net -Port 443
        
        
      • If it fails, you know traffic on 443 is blocked somewhere.
    2. Check DNS resolution
      • On the VM run:
        
             nslookup wvdportalstorageblob.blob.core.windows.net
        
        
      • Ensure it resolves to a public IP and you’re not accidentally hitting a private DNS zone.
    3. Review NSG outbound rules
      • Make sure there’s an outbound rule that allows TCP/443 to “Internet” or at least to the Storage service tag.
    4. Examine route tables (UDRs)
      • If you’ve assigned a custom route table, confirm there’s a valid default route (0.0.0.0/0) to your internet egress (NAT gateway, firewall, internet).
    5. Inspect any firewalls or proxies
      • If you’re using Azure Firewall, on‐prem proxy, or a network virtual appliance, check that it’s not blocking or inspecting that storage endpoint.
      • Some firewalls require you to explicitly allow the FQDN or the storage account’s service tag.

    Once you restore 443 connectivity to that blob endpoint, you can:

    • Hit Redeploy on the failed extension in the portal
    • OR Remove & reapply the Microsoft.Powershell.DSC extension via PowerShell/ARM

    Let me know if that gets you past this error!

    Reference docs:

    1. Troubleshoot the DSC VM extension on Windows VMs – https://aka.ms/vmExtensionDSCWindowsTroubleshoot
    2. Understand outbound network dependencies for Azure VMs – https://learn.microsoft.com/azure/virtual-network/troubleshoot-outbound-connection-problems
    3. Create and manage Azure Virtual Desktop host pools – https://learn.microsoft.com/azure/virtual-desktop/create-host-pools-portal

    Feel free to share the results of your Test-NetConnection/nslookup or any custom NSG/UDR details if you’re still stuck.

    Note: This content was drafted with the help of an AI system. Please verify the information before relying on it for decision-making.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.