如何找到当前的 Azure RM 订阅
How to find the current Azure RM Subscription
在 Azure 经典/服务管理中,Get-AzureSubscription 将提供租户中的订阅列表,并带有最新的指示符。
还有一个 Get-AzureSubscription -Current
标志,它只会为您提供当前订阅。
有没有办法在AzureRM.Profile中找到当前订阅?
Get-AzureRmContext
为您提供有关所选订阅、默认存储帐户等的信息。
(Get-AzureRmContext).Subscription
为您提供当前订阅。
您还可以使用 Get-AzureRmSubscription
$sub = Get-AzureRmSubscription
$sub.SubscriptionId
这将为您提供 SubscriptionId
现在您可以使用新的 Az 命令
Get-AzContext
在 Azure 经典/服务管理中,Get-AzureSubscription 将提供租户中的订阅列表,并带有最新的指示符。
还有一个 Get-AzureSubscription -Current
标志,它只会为您提供当前订阅。
有没有办法在AzureRM.Profile中找到当前订阅?
Get-AzureRmContext
为您提供有关所选订阅、默认存储帐户等的信息。
(Get-AzureRmContext).Subscription
为您提供当前订阅。
您还可以使用 Get-AzureRmSubscription
$sub = Get-AzureRmSubscription
$sub.SubscriptionId
这将为您提供 SubscriptionId
现在您可以使用新的 Az 命令
Get-AzContext