Science, asked by sagarmokashi1995, 1 year ago

When creating a new user in Microsoft Azure, how is the initial password determined?

Answers

Answered by Animeshananya
9
dont know, dont ask hard question better search. in google
Answered by orangesquirrel
0

The main parameters for creating a new user in Azure are as follows:


1.DisplayName

2.MailNickname

3.UserPrincipalName(UPN)

4.AccountEnabled

5.PasswordProfile


The initial password is determined using the following steps:


1. Create a variable in 'Powershell' with

a type using the New-Object cmdlet.


2. Set the password in this variable.


3. The New-AzureADUser cmdlet is called with the parameter values in order to create the new user.


4.After the previous step, PowerShell will now return the new user object which was just created and then display the ObjectId.



Similar questions