Changing UPN to a Mail Id

973 views Asked by At

By default all the User Principle Name and mail for O365 will be same but how to change User Principle Name and also how can we create an user with different User Principle Name and different mail.

1

There are 1 answers

0
Rukmini On

To change the User Principal Name, execute the following command,

Set-MsolUserPrincipalName -UserPrincipalName "[email protected]" -NewUserPrincipalName "[email protected]"

The Set-MsolUserPrincipalName cmdlet changes the User Principal Name, or user ID, of a user.

It is not recommended to use different UPN and Mail-id due to the below reasons:

  • User confusion
  • Skype for Business Online
  • Office ProPlus
  • Mobile Applications
  • ActiveSync

To know more in detail please refer these links,

Ref1, Ref2.