Powershell

Azure Powershell - 更改目錄

  • August 18, 2021

當我登錄到新的 Azure 門戶時,我會在右上角看到一個下拉菜單,讓我從 2 的列表中選擇一個“目錄”。當我使用 powershell cmdlet“Login-AzureRmAccount”登錄到 azure 時,我已連接到錯誤的目錄。如何從 Powershell 切換到另一個目錄?

使用 Select-AzureRMSubscription 時需要指定 TenantID 參數:

Select-AzureRmSubscription -SubscripitionID <ID of sub> -TenantId <ID of Azure Tenant>

您實際上可以只指定租戶來選擇目錄,而無需訂閱 ID。

Select-AzureRmSubscription  -TenantId <ID of Azure Tenant>

看看https://msdn.microsoft.com/en-us/library/mt125356.aspx 簡而言之,您可以使用 Select-AzureRmSubscription cmdlet 切換到正確的訂閱。

引用自:https://serverfault.com/questions/778561