Outlook – Change the default From address in Outlook 2010/2013

exchange-2010microsoft-outlook

I have a situation where a customer changed their primary SMTP domain.

Some users have send as rights to various mailboxes so they have the From: button displayed.
The From button displays the old primary address due to the profiles having been set up long before the address change took place.

The change was from name@old-ddmmain.com to name@new-domain.com

I'm hoping there's a registry entry that will allow a change for that email address to the new one, without having to create a new outlook profile.

The environment is Exchange 2010 SP3, clients are Outlook 2010.

Best Answer

I don't have the same environment as you (Office 365 and Outlook 2013), so I will provide the steps I used to retrieve my answer. Your mileage may vary along with the usual caveats about the dangers of changing values in the registry directly versus using the application.

The change the e-mail name from Outlook 2013, I go to:

  • File > Account Settings
  • Select Account Settings from dropdown
  • In Email tab, go to More Settings
  • Change the e-mail name.

In my example, I added 01234567890 to my e-mail. You can see when I create a New Email, the name is appended with the numbers. This does not change the actual FROM e-mail Outlook 2013, but just the name.

enter image description here

For this sequence, I used Process Monitor from SysInternals (procmon) to monitor the file and registry activity where the process name contains outlook and category is write:

enter image description here

For me, I found that when I changed the e-mail address to the new value, this registry changed:

HKCU\Software\Microsoft\Office\15.0\Outlook\Profiles\Outlook\fc9a8ceae2b34f449fc525e570d01fcf

001f6620 = name@new-domain.com (Type = REG_BINARY)

enter image description here

Since you are using Outlook 2010, the registry path will be different, especially the 15.0 part.

Please be careful with remote registry changes. Always test first.

Related Question