Get Azure Tenant ID With PowerShell

In this blog post, we will go through the steps to get your Azure Tenant ID with PowerShell.

Azure Tenant ID is a unique identifier for your Azure Active Directory (AD) tenant that allows you to manage access to your resources and applications.

Install and Connect Azure PowerShell

To connect to Azure using PowerShell, you will need to install the Azure PowerShell module. You can do this by running the following command in PowerShell:

Install-Module -Name Az -AllowClobber

Once the module is installed, you can connect to Azure by running the following command:

Connect-AzAccount

This will prompt you to sign in to your Azure account. Once you have signed in, you will be connected to your Azure subscription.

Get your Azure AD tenant ID

To get your Azure AD tenant ID, you can use the following PowerShell command:

(Get-AzTenant).Id

This command retrieves the Azure AD tenant ID associated with your Azure subscription. The output should look something like this:

12345678-9abc-4def-1234-56789abcdefg

Posted

in

,

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.