13. deactivate Microsoft365 connection
Execute this point if you regularly see an authentication window when using Outlook.
Start Windows PowerShell, copy the script into the PowerShell window and execute it with Enter:
$OutlookPath = "HKCU:\Software\Microsoft\Office\16.0\Outlook"
$AutodiscoverPath = "HKCU:\Software\Microsoft\Office\16.0\Outlook\AutoDiscover"
if(((Test-Path $AutodiscoverPath)-eq $false) -and ((Test-Path $OutlookPath) -eq $true))
{
New-Item -Path $OutlookPath -Name AutoDiscover
}
Set-ItemProperty -Path $AutodiscoverPath -Name 'ExcludeExplicitO365Endpoint' -Value 1 -Type DWORD -Force
14. fix slow start of Outlook 2016 (optional)
To speed up the start of Outlook 2016 under Windows, download the following file and run it as administrator on your computer while Outlook is closed. From the next restart, Outlook will now connect to the Exchange Server much faster.
Note: Only execute .reg files that you have received from trustworthy sources.