Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Azure and Microsoft 365 / Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)

March 17, 2024 Azure and Microsoft 365Microsoft OfficeWindows 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.

White sign-in screen in all Microsoft / Office 365 Apps

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

Internet Explorer: Delete personal settings in Windows 10

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).

clear office 365 cached credentials

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 Entra ID/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

check for Microsoft.AAD.BrokerPlugin UWP appx insttalled in Windows 10

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.
4 comments
1
Facebook Twitter Google + Pinterest
previous post
Troubleshooting: Group Policy (GPO) Not Being Applied to Clients
next post
Installing PowerShell Modules in Offline Mode (Without Internet Access)

Related Reading

Change BIOS from Legacy to UEFI without Reinstalling...

April 21, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

Allowing Ping (ICMP Echo) Responses in Windows Firewall

April 15, 2025

How to Pause (Delay) Update Installation on Windows...

April 11, 2025

4 comments

serg September 13, 2022 - 4:19 am

When opening 0365 app on my desktop, it opens with a white blank screen
I did reinstall it and word perfectly now.

Reply
Admin November 1, 2022 - 5:51 pm

Thanks this worked for me and most of my users after migrating from Google Workspaces to Office 365.

Reply
Gerard Campbell November 30, 2022 - 6:42 pm

My fix was add additional azure authentication portal urls to the firewall. They are listed here https://learn.microsoft.com/en-us/azure/azure-portal/azure-portal-safelist-urls?tabs=public-cloud

Reply
Mieczysław Solarz September 12, 2023 - 1:14 pm

This blank screen may also appear if Web Account Manager service is disabled through Windows Services.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Outlook Keeps Asking for Password on Windows
  • Checking User Sign-in Logs in Entra ID (Microsoft 365)
  • How to Manually Configure Exchange or Microsoft 365 Account in Outlook 365/2019/2016
  • Search and Delete Emails from User Mailboxes on Exchange Server (Microsoft 365) with PowerShell
  • Fix: Microsoft Outlook Search Not Working on Windows 10/11
  • Removing Built-in Teams Chat in Windows 11
  • Export Exchange or Office 365 Global Address List (GAL) to CSV
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top