How to identify tenant type in azure/Entra

Ishtiaque Ahmed CSEH Rafin 161 Reputation points
2024-11-19T09:03:00.77+00:00

How do I as a global admin identify what is the tenant type in azure, like is the tenant workforce or external

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
22,398 questions
0 comments No comments
{count} votes

Accepted answer
  1. FrankEscarosBuechsel-MSFT 160 Reputation points Microsoft Employee
    2024-11-19T13:14:35.6366667+00:00

    Hi @Ishtiaque Ahmed CSEH Rafin • Thank you for reaching out.

    It looks like you are looking for a way to identify the type of a tenant as a global administrator. Are you looking to achieve this via Portal access or in a programmatic fashion?

    Please find the steps for accessing this information via the Entra Admin Portal and PowerShell below.

    Using Entra Admin Portal:

    • Log into the Entra Admin Portal with your Global Administrator account.
    • Navigate to Identity -> Overview -> Manage Tenants.
    • Use the Search Tenant search box to find a specific tenant by name or the filter button to filter all available tenants for either Workforce or External tenants.
    • The resulting table view will show the type of the tenant under the Tenant Type column.

    EntraPortal Using PowerShell:

    • Install the Azure PowerShell Module
    • Run Connect-AzAccount and log in with the Global Administrator Account
    • Run Get-AzTenant | Select-Object -property Name, ID, TenantType to get a list of all tenants. Tenants identified as AAD are Workforce tenants and tenants identified as CIAM are External tenants

    PowerShell

    Read more: Get-AzTenant PowerShell Documentation


    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.