我不能在 Azure 上创建 Windows 10 VM吗

问题描述 投票:0回答:1

我正在尝试创建 Microsoft Windows 10 Azure VM。我正在使用 Azure 学生订阅。每次我尝试创建它时,都会收到虚拟机映像不可用的错误。我已经使用了命令

az vm list-skus --location eastus --size Standard_DS1_v2 --all --output table

az vm list-skus --location eastus --size Standard_D2as_v4 --all --output table

确认该产品在该地区可用。有人可以帮我吗?

The requested VM size for resource 'Following SKUs have failed for Capacity 
Restrictions: Standard_D2as_v4' is currently not available in location 
'eastus'. Please try another size or deploy to a different location or 
different zone. See https://aka.ms/azureskunotavailable for details.
$ az vm list-skus --location eastus --size Standard_D2as_v4 --all --output table

ResourceType     Locations    Name              Zones    Restrictions
---------------  -----------  ----------------  -------  --------------
virtualMachines  eastus       Standard_D2as_v4  1,2,3    None
$ az vm list-skus --location eastus --size Standard_DS1_v2 --all --output table
ResourceType     Locations    Name             Zones    Restrictions
---------------  -----------  ---------------  -------  --------------
virtualMachines  eastus       Standard_DS1_v2  1,2,3    None
windows azure azure-virtual-machine
1个回答
0
投票

我不能在 Azure 上创建 Windows 10 VM吗

The requested VM size for resource 'Following SKUs have failed for Capacity 
Restrictions: Standard_D2as_v4' is currently not available in location 
'eastus'.

您遇到的错误是由于您的订阅中不提供指定的 SKU(标准 Dv4 系列 vCPU)。您可以使用以下命令检查订阅的可用CPU配额

az vm list-usage --location eastus --output table

输出:

enter image description here

注意:Azure 学生订阅可能对 VM 大小和可用性有额外限制

如果

D-Series v4

 CPU 不可用,请确保选择其他系列。

enter image description here

参考: 选择适合您的 Azure 帐户

© www.soinside.com 2019 - 2024. All rights reserved.