Aug 05 2020 11:28 PM
We are re-branding our company and therefore we need to change the email address displayed on outgoing emails. We also do not want to change their login email address, only their exchange address. We also need to keep the current address as an alternative.
Environment setup;
Current tested status;
I could do it for one user as below:
Set-Mailbox username -WindowsEmailAddress username@domain.com
I could do it for bulk users as below (using a csv file);
Import-CSV "F:\test.csv" | foreach {Set-Mailbox $_.Mailbox -WindowsEmailAddress $_.NewEmail}
Questions;
Aug 05 2020 11:31 PM
Use Email Address Policies, that's what they are designed for: https://docs.microsoft.com/en-us/exchange/email-addresses-and-address-books/email-address-policies/e...
Aug 06 2020 01:34 AM