Computer >> Computer tutorials >  >> System >> Windows 10

Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

Some Windows 10 users complain that when launching Office 365 apps (Outlook, Teams, Word, Excel, etc.) or Outlook 2019/2016 (with Exchange Online mailbox), a blank white sign-in screen appears when they try to login to their Microsoft account. There is no prompt at all to enter authentication credentials. In this article, I’ve put together a few basic solutions to fix blank sign-in screen issues in Office 365 apps.

Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

First of all, try to reset Internet Explorer security settings (Tools -> Internet Options -> Advanced -> Reset -> select Delete personal settings -> Reset).

Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

If a user has changed their password recently and immediately after that had an issue with a blank sign-in screen, try to remove any saved passwords related to Microsoft Office in Windows Credential Manager (Control Panel -> User Accounts -> Credential Manager -> Windows Credentials).

Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

Restart the Office app and make sure that the Microsoft authentication window is displayed correctly.

Another typical problem is related to the enabled Modern Authentication in your Azure/Microsoft 365/Exchange Online tenant.

To prevent your Office apps from using Modern Auth, you can create the EnableADAL (REG_DWORD) registry parameter the value 0. Depending on the Office version, the registry path to this parameter may differ:

  • For Office 2013: HKCU\SOFTWARE\Microsoft\Office\15.0\Common\Identity\
  • For Office 2019,2016, and Office 365: HKCU\SOFTWARE\Microsoft\Office\16.0\Common\Identity\

To create the EnableADAL reg parameter, use this command:

reg add "HKCU\SOFTWARE\Microsoft\Office\16.0\Common\Identity" /v EnableADAL /t REG_DWORD /d 0 /f

This option allows Office apps to use basic authentication instead of Modern Auth.

After adding EnableADAL=0 parameter to the registry and restarting Outlook, a user will see a usual Windows security dialog box to enter their credentials.

However, if you disable Modern Authentication for Office (EnableADAL =0), it may result in other problems with Microsoft apps. For example, Outlook may constantly prompt you to enter your password, a user may experience troubles when trying to sign in to MS Teams, etc.

By default, Modern Authentication is enabled for all new Microsoft 365 tenants since August 2017. In 2022, Microsoft is going to completely disable Basic Authentication for all tenants still using it. So the solution when you disable EnableADAL will bring you additional troubles in some time. Also, note that Outlook 2010 doesn’t support Modern Auth.

Modern Authentication is based on ADAL (Active Directory Authentication Library) and OAuth 2.0. When using Microsoft Auth, the app doesn’t store user credentials and uses token-based authentication. In Windows 10, to make Modern Auth work correctly, a special AAD broker plugin must be installed. It is delivered as a modern APPX app. If this built-in UWP (APPX) app has been removed from Windows, a user may have problems when using Modern Authentication.

Use the following PowerShell command to make sure that Microsoft.AAD.BrokerPlugin app is installed:

Get-AppxPackage Microsoft.AAD.BrokerPlugin |select Name,PackageFamilyName,InstallLocation,Status|fl

Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

If the app is removed but remains on a disk, you can re-register it using its XML manifest file:

Add-AppxPackage -Register "$env:windir\SystemApps\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Appxmanifest.xml" -DisableDevelopmentMode -ForceApplicationShutdown

If the app manifest file is also deleted, you can download the installation APPX file from Microsoft Store and install the app manually.

Disable the EnableADAL for a user in the registry using this PowerShell command:

Remove-ItemProperty -Path “HKCU:\Software\Microsoft\Office\16.0\Common\Identity” -Name EnableADAL

Clear saved credentials:

cmdkey /list | ForEach-Object{if($_ -like "*Target:*"){cmdkey /del:($_ -replace " ","" -replace "Target:","")}}

Then Modern Auth will start working correctly in all Office 365 apps.

Microsoft recommends to force enable the Modern Authentication in Outlook 2019/2016 and O365 using AlwaysUseMSOAuthForAutoDiscover=1 (HKCU \Software\Microsoft\Exchange\) registry parameter. You can deploy this registry parameter to user computers by using a GPO.