Forum Discussion
Bulk change primary outgoing emails in hybrid environment
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;
- Hybrid setup containing on-premises exchange server and o365 Exchange online
Current tested status;
- I tested it Exchange online in o365. Below shows the attempted steps
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;
- How to do it in on-premises Exchange server?
- Is there any method other than what i tried to do it in Exchange online?
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/email-address-policies?view=exchserver-2019
- ChethiyaA_97Copper ContributorThanks i will check that. What do you think about Exchange online attempt. is there any good one except that?