Using Classic Outlook on Windows for personal email, calendar, and contact management
Greetings All,
Had the same issue. Disable "Continue running background extensions and apps when Microsoft Edge is closed" and your problem should go away.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
While using the Outlook App on Windows 10, Creating a new event in Calendar, and ONLY when selecting Invite Attendees button, Outlook will open a tab in my browser that does nothing but have the outlook logo.
Using Classic Outlook on Windows for personal email, calendar, and contact management
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Outlook Unexpectedly Opens a Browser Window if OWA is Disabled
At least Microsoft is finally acknowledging it. However, a fix isn't expected until mid April 2023 at the earliest, according to the article linked above.
As of build Microsoft® Outlook® for Microsoft 365 MSO (Version 2211 Build 16.0.15831.20098) 64-bit this issue no longer affects the calendar selection... Now every time we open the outlook desktop app, it launches the web version. This is happening immediately the Outlook Desktop app is opened.
Microsoft told me this is a bug in the current O365 release and should be fixed in the next patch.
As a workaround, they gave me a registry key to deploy and it has worked for all users that have received it. I did not have to make the users enable the Microsoft exchange add-in as it was already enabled in our environment by default.
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Outlook\Options\CalendarAdd: ShowLegacyRoomFinder with dword value 1
Here is the PowerShell script i used for deployment in case anyone needs it:
$RegistryPath = 'HKCU:\Software\Microsoft\Office\16.0\Outlook\Options\Calendar'
$Name = 'ShowLegacyRoomFinder'
$Value = '1'
If (-NOT (Test-Path $RegistryPath)) {
New-Item -Path $RegistryPath -Force | Out-Null
}
New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -PropertyType DWORD -Force
You can deployed it via GPO as well
Here is the article with details.
https://support.microsoft.com/en-us/office/how-to-revert-the-outlook-desktop-webview-based-room-finder-to-the-legacy-room-finder-e872b6f2-0d36-41ff-861d-adaab2da9c28#:~:text=How%20to%20revert%20the%20Outlook%20Desktop%20WebView%20based,Close%20Registry%20Editor%20and%20restart%20Outlook.%20See%20More.
Thanks! Everything I'm finding points to it being a known issue, and it appears to only happen to organizations who have OWA disabled. Hopefully a fix goes out soon for this.