Entra ID peut être vu comme l' annuaire cloud des services cloud Microsoft tels que Microsoft Azure, Microsoft 365. Il s'occupe également de la gestion des identités. Ici, je vais montrer comment créer des comptes utilisateurs avec PowerShell et depuis l'interface web du centre d'administration Microsoft Entra.
Ouvrir un navigateur web et entrer https://entra.microsoft.com dans la barre d'adresse.
PS C:\> Install-Module Microsoft.Graph -Scope CurrentUser
PS C:\> PowerShell.exe -ExecutionPolicy RemoteSigned
PS C:\> Import-Module Microsoft.Graph.Authentication
PS C:\> Update-Module Microsoft.Graph
PS C:\> Connect-MgGraph
PS C:\> $PWProfile = @{
Password = "A1TimePass!";
ForceChangePasswordNextSignIn = $true
}
PS C:\> New-MgUser `
-DisplayName "Eric Cartman" `
-GivenName "Eric" -Surname "Cartman" `
-MailNickname "e.cartman" `
-UsageLocation "US" `
-UserPrincipalName "e.cartman@std.rocks" `
-PasswordProfile $PWProfile -AccountEnabled `
-Department "fourth grade" -JobTitle "fatass" -CompanyName "Schoooool"
Contact :