我正在尝试使用West Central US中的以下命令创建Azure经典存储帐户,但它抛出错误


New-AzureRmResource -ResourceName "xxxxx" -ResourceGroupName "xxx" -ResourceType "Microsoft.ClassicStorage/StorageAccounts" -Location "West Central US"  -Properties @{ AccountType = "Standard_LRS" }

New-AzureStorageAccount –StorageAccountName "xxx" -Location "West Central US" -Type Standard_LRS

但是能够在其他位置创建经典存储帐户。

最佳答案

我怀疑您的订阅不支持“美国中西部”的经典存储帐户,请尝试在Azure门户中的此位置手动创建经典存储帐户,并检查是否会看到此警告。

powershell - 无法在美国中西部创建AZURE CLASSIC存储帐户-LMLPHP

07-26 02:02