如何使用powershell检查azure资源管理器门户中的最大核心数,存储帐户数

时间:2016-01-27 11:47:48

标签: azure azure-resource-manager

我必须使用PowerShell检查azure ARM中的最大核心数和存储数。当我提供此命令时(Get-AzureRmSubscription -current -ExtendedDetails).MaxStorageAccounts它显示错误为" Get-AzureRmSubscription:找不到与参数名称匹配的参数'当前'。" ;请让我知道如何计算。提前谢谢。

1 个答案:

答案 0 :(得分:1)

  1. 使用Get-AzureRmStorageUsage获取当前使用情况和限制。

    enter image description here

  2. 使用Get-AzureRmVMUsage -Location YourLocation获取核心使用和限制。

    enter image description here