New-MgUser
注意クラウドユーザー作成
New-MgUser -DisplayName <n> -UserPrincipalName <upn> -MailNickname <nick> -AccountEnabled -PasswordProfile @{...}
Entra IDユーザーをGraph経由で作成。初回サインイン時のパスワード変更を強制し、作成後にライセンス割当へ進む。
実行例
New-MgUser -DisplayName '山田太郎' -UserPrincipalName [email protected] -MailNickname taro -AccountEnabled -PasswordProfile @{Password='TempP@ss1';ForceChangePasswordNextSignIn=$true}入社ユーザーを作成
書式
New-MgUser -DisplayName n -UserPrincipalName upn -MailNickname nick -AccountEnabled -PasswordProfile @{Password='...';ForceChangePasswordNextSignIn=$true}
実行前の注意
初期パスワードの受け渡しは安全な経路で。
関連コマンド
- Get-MgUserEntraユーザー確認
- Set-MgUserLicenseライセンスの割当・剥奪