Why I can't create VM with any imge from makeplace

zhangyong 5 Reputation points
2026-06-29T14:26:29.48+00:00

I want create a VM , when I select the image from Image list, I found windows server 2016 is not in the list.

then a click the see all images ,and it take me to the market place.

I found the windows server 2016 and click select , then it goes back to the create VM UI,

but it's strange the Windows server 2016 that I selected just now does not become and value of image input box. the value in the input box is the old value.

I try it with some other images in the marketplace , they are all with the same problem.

and I change the region , change the security type ,

the problem is still there.

I feel it's the bug in Azure. is there anyone encounter the same problem.

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.


1 answer

Sort by: Most helpful
  1. Alex Burlachenko 23,170 Reputation points MVP Volunteer Moderator
    2026-06-30T10:22:57.61+00:00

    hi zhangyong & thx for sharing urs issue here at Q&A portal,

    Could be a portal UI bug, but Windows Server 2016 is also old enough that it may not show in the normal quick image list anymore.

    Try creating it with CLI instead of portal

    az vm image list \

    --publisher MicrosoftWindowsServer \

    --offer WindowsServer \

    --sku 2016-Datacenter \

    --all \

    --output table

    Then create the VM using the exact URN returned

    az vm create \

    -g <rg> \

    -n <vm-name> \

    --image publisher:offer:sku:version \

    --admin-username <user>

    If CLI works, it’s just the portal image picker being flaky. If CLI also fails, the image/SKU may not be available for that region/security type/subscription. Try Gen1 / Standard security type too, bc older images may not support Trusted Launch.

    rgds,

    Alex

    &

    If my answer was helpful pls mark it and additional thx if u follow me at Q&A portal
    

    and at my blog https://ctrlaltdel.blog/

     

    Was this answer helpful?


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.