You have an Azure Active Directory (Azure AD) tenant named contoso.onmicrosoft.com.
You hire a temporary vendor. The vendor uses a Microsoft account that has a sign-in of
[email protected].
You need to ensure that the vendor can authenticate to the tenant by using
[email protected].
What should you do?
Correct Answer: D
UserPrincipalName - contains the UserPrincipalName (UPN) of this user. The UPN is what the user will use when they sign in into Azure AD. The common structure is @, so for Abby Brown in Contoso.com, the UPN would be
[email protected] Example:
To create the user, call the New-AzureADUser cmdlet with the parameter values:
powershell New-AzureADUser -AccountEnabled $True -DisplayName "Abby Brown" - PasswordProfile $PasswordProfile -MailNickName "AbbyB" -UserPrincipalName
"
[email protected]" References:
https://docs.microsoft.com/bs-cyrl-ba/powershell/azure/active-directory/new-user-sample?view=azureadps-2.0
Recent Comments (The most recent comments are at the top.)
Is a Guest user that must login with Outlook.com. Only possible correct answer is C. all powershell commands are not adding a Guest User