An Azure service that is used to provision Windows and Linux virtual machines.
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/