Forum Discussion

BrentStobbs's avatar
BrentStobbs
Brass Contributor
May 18, 2020
Solved

Outlook constantly reverts to "Need Password"

I have an Exchange (2016 CU 16) Hybrid set up, with all mailboxes stored On-Prem.  I use MFA/ADFS for Authentication.   A number of my users are getting "Need Password" a few minutes after starting...
  • BrentStobbs's avatar
    BrentStobbs
    May 18, 2020

    ChristianBergstrom Thank you

     

    I believe I have resolved this issue.  After researching the issue and coming across the suggestion to delete the registry key

     

    HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Identity\Identities

     

    While this didn't resolve the issue, it pointed me to the error : AADSTS500011: The resource principal named <autodiscover URL> was not found in the tenant named <tenant ID>.

     

    After checking the Service Principal URLs I found that the Autodiscover URL was not added.

     

    After running the following commands (As per https://blog.markdepalma.com/?p=490😞

    $x = Get-MsolServicePrincipal -AppPrincipalId 00000002-0000-0ff1-ce00-000000000000
    $x.ServicePrincipalnames.Add("https://autodiscover.domain.com/")
    Set-MSOLServicePrincipal -AppPrincipalId 00000002-0000-0ff1-ce00-000000000000 -ServicePrincipalNames $x.ServicePrincipalNames

    The problem has been resolved for the past hour.  I'm still monitoring before the celebration.

Resources