通过 PowerShell 获取 Azure 目录名称

Get the Azure Directory Name by PowerShell

如何获取我通过 PowerShell 登录的 Azure 目录(租户)名称?

我试过'Get-AzContext',但它只提供租户ID。输出中不包含租户名称或默认域名。

你试过命令Get-AzureADTenantDetail

Get-AzureADTenantDetail
   [-All <Boolean>]
   [-Top <Int32>]
   [<CommonParameters>]

Get-AzTenant 会有帮助。

Get-AzTenant
   [[-TenantId] <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]


确保Az的版本是4.5.0(最新版本)。 您可以 Install-Module -Name Az 更新它。

您需要 PowerShell 的 AzureAD 模块,您将通过连接获取信息,然后 运行 Get-AzureADTenantDetail

Install-Module AzureAD
Connect-AzureAD
Get-AzureADTenantDetail