获取Azure中所有活动目录的列表

时间:2016-06-27 09:48:24

标签: powershell azure azure-active-directory

如何使用powershell 获取Azure 中所有活动目录的列表?更准确地说,我正在寻找Azure门户中提供的以下信息[以下两个条目]:

enter image description here

另外,如何在 powershell 中获取这两个目录中每个目录的详细信息? (我已经安装了Azure Active Directory Cmdlets

1 个答案:

答案 0 :(得分:0)

下面的两个选项都将检索可用的租户,但是Azure AD Cmdlet将提供更多信息,例如租户的显示名称和验证域。

Azure AD模块

Cmdlet:Get-AzureADTenantDetail -All $true

文档:https://docs.microsoft.com/en-us/powershell/module/azuread/get-azureadtenantdetail

Azure Rm模块

Cmdlet:Get-AzureRmTenant

文档:https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermtenant

测试:

如果您想尝试这些Cmdlet而不需要在本地安装它们,请签出Azure Cloud Shell。它将为您提供基于浏览器的Microsoft Azure命令行。

https://shell.azure.com

https://azure.microsoft.com/en-us/features/cloud-shell/