powershell Azure ImageBuilder映像创建失败,因为它找不到存在的基础映像

iyfamqjs  于 12个月前  发布在  Shell
关注(0)|答案(1)|浏览(114)

此Azure Image Builder命令返回以下错误:

New-AzResourceGroupDeployment -ResourceGroupName $imageResourceGroup -TemplateFile $templateFilePath -api-version "2019-05-01-preview" -imageTemplateName $imageTemplateName -svclocation $location

Platform Image was not found. location: westus, publisherName: MicrosoftWindowsDesktop, offer: Windows-10, sku: 20h1-evd, version: latest.

字符串
这是我的模板:

"source": {
    "type": "PlatformImage",
    "publisher": "MicrosoftWindowsDesktop",
    "offer": "Windows-10",
    "sku": "20h1-evd",
    "version": "latest"
  },


当我运行

Get-AzVMImageSku -Location westus -PublisherName MicrosoftWindowsDesktop -Offer Windows-10


它返回

Skus          Offer      PublisherName           Location Id
----          -----      -------------           -------- --
...
20h1-evd     Windows-10 MicrosoftWindowsDesktop westus   /Subscriptions/68fab0aa-ab1e-4e09-a325-46ec73e30541/Providers/Microsoft.Compute/Locations/westus/Publishers/Mi…


A bug has been opened for several months.解决方法是使用Windows 2019-Datacenter作为基础映像。有没有一种方法可以使映像生成器与Windows-10一起工作?似乎微软只是忽略了这样的问题。

im9ewurl

im9ewurl1#

您混淆了您所在区域可用的内容和计算库(特别是Azure Image Builder)中可用的映像。AIB映像会延迟几个月运行,并且在某些情况下,根本不提供您想要的映像。
前往这个网站:https://az-vm-image.info/?cmd=--all,它将允许您完全按照您的需要进行过滤。您将看到“sku”:“20 h1-evd”不是AIB的选项。

相关问题