To work around this problem, use one of the following
methods:
To locate users who are experiencing this problem, you can use the following PowerShell command:
get-mailbox -resultsize unlimited | Where-Object {$_.PrimarySMTPAddress -ne $_.WindowsEmailAddress}
To make a bulk modification of users who are affected when their Windows e-mail address is set to their primary SMTP address, you can use the following PowerShell command:
get-mailbox -resultsize unlimited | Where-Object {$_.PrimarySMTPAddress -ne $_.WindowsEmailAddress} | foreach { set-mailbox $_.identity -windowsemailaddress $_.primarySMTPAddress }