Please note that this is the Turkish (tr-tr) forum. I kindly recommend posting your question in Turkish so that more community members can assist you effectively. If you prefer using Danish, you are welcome to post in the English forum instead. I sincerely appreciate your understanding and cooperation.
Hi Muhammet,
Thank you for reaching out to Microsoft Q&A. After moving the mailbox from on-premises Exchange to Exchange Online, the ExchangeGuid stored in the on-premises RemoteMailbox object (synced via Entra ID Connect) no longer matches the actual mailbox GUID in Exchange Online.
Outlook Desktop and the Microsoft Connectivity Analyzer rely on the Autodiscover POST request to https://autodiscover.outlook.com/.... This request performs an internal directory lookup using the SMTP address together with that ExchangeGuid. When the GUIDs are out of sync, the Exchange Online backend simply returns Error 500 – “The email address can't be found” (you can see in the response headers that it still hits the correct server via X-CalculatedBETarget).
OWA and Outlook Mobile continue to work perfectly because they authenticate directly against the user object in Entra ID and the mailbox in Exchange Online. Cloud-native mailboxes never experience this problem at all, since they have no on-premises RemoteMailbox object.
That’s exactly why only the migrated (synced) accounts are affected.
First let have a quick check:
In Exchange Online PowerShell (Connect-ExchangeOnline):
Get-Mailbox ******@contoso.com | Select DisplayName, PrimarySmtpAddress, ExchangeGuid
In On-Premises Exchange PowerShell:
Get-RemoteMailbox ******@contoso.com | Select DisplayName, PrimarySmtpAddress, ExchangeGuid
If the two ExchangeGuid values do not match >>> you’ve confirmed the root cause. to fix it (one-time per user)
- Copy the ExchangeGuid from the Exchange Online mailbox.
- Update the on-premises
RemoteMailbox: PowerShellSet-RemoteMailbox ******@contoso.com -ExchangeGuid <Paste-EXO-GUID-here>- Force an Entra ID Connect delta sync (on your AAD Connect server):
Start-ADSyncSyncCycle -PolicyType Delta - Wait 5–15 minutes, then on the client either delete the Outlook profile (or just the .ost) or use Ctrl + right-click on the Outlook tray icon >> Test E-mail AutoConfiguration to verify the POST now succeeds.
The profile should now create without any issues. For Bulk Users, you can export the correct GUIDs from EXO and run a small script to update all RemoteMailboxes, followed by one delta sync.
Hope this help.
Note: Please follow the steps in our documentation to enable email notifications if you would like to receive relevant email notifications for this topic.