Azure AD Tenant: Configuring Custom Domain for User Names | AZ-300 Exam Practice

Configure Azure AD Users with Custom @contoso.com Domain

Question

DRAG DROP -

You have an Azure Active Directory (Azure AD) tenant that has the initial domain name.

You have a domain name of contoso.com registered at a third-party registrar.

You need to ensure that you can create Azure AD users that have names containing a suffix of @contoso.com.

Which three actions should you perform in sequence? To answer, move the appropriate cmdlets from the list of cmdlets to the answer area and arrange them in the correct order.

Select and Place:

Explanations

Explanation

https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/add-custom-domain

Sure, here is a detailed explanation of the answer to this question:

The question is asking you to enable Azure AD users to have email addresses with the domain name @contoso.com. To do this, you need to add the domain name contoso.com to your Azure AD tenant and then verify that you own the domain name.

The three actions that you need to perform in sequence are:

  1. Add the domain name to your Azure AD tenant using the Add-AzureADDomain cmdlet:
sql
Add-AzureADDomain -Name contoso.com

This cmdlet adds the domain name contoso.com to your Azure AD tenant.

  1. Verify that you own the domain name using the Set-AzureADDomainVerificationDnsRecord cmdlet:
csharp
Set-AzureADDomainVerificationDnsRecord -DomainName contoso.com -ResourceGroupName <resource-group-name> -Name <domain-verification-record-name> -Type TXT -Value <domain-verification-record-value>

This cmdlet creates a TXT record in the DNS zone for the domain name contoso.com that contains a verification code.

Note: You need to replace <resource-group-name>, <domain-verification-record-name>, and <domain-verification-record-value> with the appropriate values.

  1. Verify the domain name using the Confirm-AzureADDomain cmdlet:
Confirm-AzureADDomain -Name contoso.com

This cmdlet confirms that you own the domain name contoso.com and enables you to use the domain name for Azure AD users.

By performing these three actions in sequence, you will be able to create Azure AD users with email addresses that have the domain name @contoso.com.