Microsoft new Outlook takes 10 seconds to do what Outlook Classic does instantly
The Performance Gap: New Outlook's 10-Second Notification Lag
By Abhijith M B — June 15, 2026
Microsoft's transition to the "New Outlook" for Windows has introduced a glaring performance issue: clicking a notification to open an email takes an eternity compared to the legacy version.
The Tale of Two Applications
To understand the problem, we must first distinguish between the two versions of the software currently available on Windows:
- Outlook Classic: A robust, native Win32 desktop application designed specifically for power users.
- New Outlook: A modern replacement that is essentially a
WebView2wrapper—effectively a browser window rendering Outlook.com.
While the original Win32 app was often criticized for being bloated cumbersome to configure, Microsoft's solution was to pivot away from native code entirely. This new web-based approach replaced the lightweight UWP Mail and Calendar apps. Despite significant user pushback in 2023, Microsoft proceeded with the transition, officially retiring the UWP apps by the end of 2024.
Note: Microsoft has been pushing this new version to enterprise clients, though they recently shifted the forced opt-out deadline from
April 2026to March 2027. This one-year extension suggests that Microsoft is aware the app isn't yet ready for all professional workloads.

The Notification Bottleneck
While the "New Outlook" has seen improvements—specifically in its initial launch speed, which is now nearly as fast as the Classic version—the way it handles Windows 11 notifications is problematic.
The Comparison
When a notification banner appears in the bottom right of the screen, the expected behavior is an immediate jump to the message.
| Feature | Outlook Classic | New Outlook |
|---|---|---|
| Initial App Launch | Extremely Fast | Nearly as Fast |
| Notification Response | Instant | Seconds |
| Architecture | Native Win32 | WebView2 (Chromium) |
The "Notification Paradox"
The most absurd part of this experience is that the "shortcut" (the notification) is actually slower than the "long way."
- Method A (The Shortcut): Click notification Wait for app Wait for inbox Wait for email 10 seconds.
- Method B (The Manual Way): Open app via Start Menu Click email in list 5 seconds.
Mathematically, the inefficiency can be viewed as:
Why is it so slow?
Because the New Outlook relies on the Microsoft Edge WebView2 runtime, it doesn't behave like a standard app. Instead, it follows a complex browser-based execution chain.
As shown in the logic above, the app must essentially "boot up" a web session before it can display the content. This process is represented by the following conceptual sequence:
async function openEmailFromNotification(emailId) {
await initializeChromiumEngine();
await authenticateUser();
await loadInbox();
// The lag happens here while the DOM renders
await navigateToEmail(emailId);
return renderEmail();
}
Current Status and Future Fixes
Microsoft is not oblivious to this flaw. As reported in December 2025, the company has acknowledged the latency and is currently testing a new API to streamline this process.
Microsoft's "To-Do" List for Outlook:
- Reduce
WebView2initialization overhead. - Implement direct-to-email deep linking without loading the full inbox first.
- Match the "instant" feel of the Win32 Classic app.
