■ New-AzureADUser 명령을 사용해 Azure Acitve Directory 사용자를 추가하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
$PasswordProfile = New-Object -TypeName Microsoft.Open.AzureAD.Model.PasswordProfile $PasswordProfile.Password = "P@ssw0rd1234" New-AzureADUser -AccountEnabled $True ` -DisplayName "testuser" ` -PasswordProfile $PasswordProfile ` -MailNickName "testuser" ` -UserPrincipalName testuser@texture2dhotmail.onmicrosoft.com ※ "P@ssw0rd1234" : 패스워드 "testuser" : 표시명 "testuser" : 메일 별칭 testuser@texture2dhotmail.onmicrosoft.com : 사용자 계정 |