我正在尝试使用Powershell更改Azure AD用户的用户主体名称 我在Microsoft文档here中找到的命令Set-MsolUserPrincipalName。此方法工作正常,可以更改用户主体名称,还可以将email属性也更改为相同的值。
示例命令:
Set-MsolUserPrincipalName -UserPrincipalName "davidc@contoso.com" -NewUserPrincipalName "davidchew@contoso.com"
还有其他方法可以更改用户主体名称而不影响用户的电子邮件吗?