Can't add exchange email to Outlook after upgrading server license from 2013 to 2019

PSVirtualBkkpg 0 Reputation points
2023-01-26T21:41:09.5366667+00:00

Yesterday, I updated my server email license from MS Exchange 2013 to 2019. Prior to the update, I exported the files from Outlook (MSO365) and removed the email address from Outlook (per instructions from my hosting co). Now I can't add the email back into Outlook (desktop). Through "advanced" setup [autodiscover does not work], I've tried IMAP and Exchange. I even had a tech from my hosting company spend an hour trying to troubleshoot. No success. Most times it is just prompting me to re-enter the password.

I CAN access the email address through the web so p/w is not the problem, Outlook/my computer is.

I'm thinking it's trying to use data from the old (2013) exchange setup but I'm not finding anything about fixing that/clearing it out, if that is the problem.

For reference:

Windows 10 Pro on PC

MS Office365

Bitlocker enabled

everything up to date

non-MS email address (my bz email)

The email address is no longer showing in

Settings -> Accounts -> Email & accounts

nor in

Settings -> Accounts -> Email & accounts -> Access work or school

But it does show up when I'm adding the email to Outlook and entering the email address itself b/f the p/w. It appears in the dropdown as an option.

Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,083 questions
Outlook
Outlook
A family of Microsoft email and calendar products.
3,010 questions
Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,900 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,357 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Amit Singh 4,846 Reputation points
    2023-01-27T06:34:22.6566667+00:00

    This turned out to be a known scenario, where Exchange 2019 does not install all necessary certificates when it noted an existing Exchange 2013 has a compatible certificate that it can piggy-back off of. When Exchange 2013 was retired from the domain, that certificate was no longer available, and caused "quirky" behavior with Outlook clients.

    The following simple commands regenerated the certificate and put it in place:

    New-ExchangeCertificate -KeySize 2048 -PrivateKeyExportable $true -SubjectName "cn=Microsoft Exchange Server Auth Certificate" -FriendlyName "Microsoft Exchange Server Auth Certificate" -DomainName "OURDOMAIN"

    $Thumbprint = (Get-ChildItem -Path Cert:\LocalMachine\My | Where-Object {$_.Subject -match "Microsoft Exchange Server Auth Certificate"}).Thumbprint;

    Set-AuthConfig -NewCertificateThumbprint $Thumbprint -NewCertificateEffectiveDate (Get-Date)

    Set-AuthConfig -PublishCertificate

    Set-AuthConfig -ClearPreviousCertificate