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:
Explanation
https://docs.microsoft.com/en-us/azure/active-directory/fundamentals/add-custom-domainSure, 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:
sqlAdd-AzureADDomain -Name contoso.com
This cmdlet adds the domain name contoso.com to your Azure AD tenant.
csharpSet-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.
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.