Fix New Outlook startup crash by renaming Olk and OneAuth caches

  • Thread Author
Microsoft’s redesigned Outlook for Windows can refuse to open on some machines — a problem that has repeatedly surfaced after app updates — but a simple, community-proven cleanup of two per‑user folders often restores the client immediately while preserving mailbox data in the cloud.

Background / Overview​

Since mid‑2025 Microsoft has been migrating users to the New Outlook experience — a WebView2‑based, more web‑centric client that Microsoft is pushing as the replacement for the older Mail app and, increasingly, the classic Outlook installs. That migration has brought a series of teething problems, including startup crashes where clicking the desktop icon produces no window or an immediate process termination with Event Viewer entries such as exception code 0xc0000409. Community investigation and Microsoft Q&A threads converged on a practical remediation: clear two per‑user runtime folders — Olk and OneAuth — under %localappdata%\Microsoft and then restart the app. The pattern is important: web/OWA (Outlook on the web) usually continues to work, which strongly indicates the problem is local client state rather than server‑side mailbox corruption. Microsoft community advisors and multiple community posts have validated the folder‑reset as the fastest way to get the New Outlook UI back on most affected devices.

What’s failing and why the Olk + OneAuth reset generally works​

The two folders and what they contain​

  • %localappdata%\Microsoft\Olk — Holds transient client artifacts: cache files, local WebView data and renderer artifacts, temporary logs and other non‑persistent startup state that the New Outlook uses to speed loading and enable offline behavior.
  • %localappdata%\Microsoft\OneAuth — Stores local authentication artifacts: short‑lived tokens, cached sign‑in state and credential handshakes used to silently authenticate Microsoft 365/Exchange/Outlook.com accounts.
When either cache or cached auth state becomes corrupted — for example because of a partial write during an update, a malformed WebView resource, or an incompatible token after a server change — the New Outlook can fail very early in its initialization sequence and exit before it draws a visible window, often leaving a fast‑fail exception such as 0xc0000409 recorded in Event Viewer. Deleting (or better: renaming) those folders forces the client to rebuild a fresh runtime cache and reacquire authentication tokens on next launch, which bypasses the corrupted local state that caused the crash.

Technical plausibility and WebView2​

The New Outlook relies heavily on embedded web components (WebView2) and token‑based authentication flows. Corruption in WebView cache or in an auth blob can provoke an unhandled exception during initialization. Recreating those caches avoids the corrupted artifact and aligns the client’s local state with the server-side identity platform. Multiple independent reports and Microsoft responses to community threads support this model.

The quick fix — step‑by‑step (safe, recommended approach)​

Follow these steps if the New Outlook on a Windows PC refuses to open. This approach is low risk and reversible.
  • Close Outlook completely. Confirm there’s no olk.exe or OUTLOOK.EXE process left in Task Manager.
  • Press WIN + R to open Run, paste: %localappdata%\Microsoft and press Enter.
  • Locate the folders named Olk and OneAuth.
  • Preferred — rename each folder to add a suffix (for example, Olk.bak and OneAuth.bak). Renaming preserves a backup copy for quick rollback.
  • Start Outlook. Allow a few minutes for the client to recreate caches, reauthenticate and fully sync mail.
  • If everything is stable for a session or two, you may delete the .bak folders to reclaim disk space.
PowerShell alternative for IT pros (run in user context):
Code:
$path = "$env:LOCALAPPDATA\Microsoft"
Rename-Item "$path\Olk" "$path\Olk.bak" -ErrorAction SilentlyContinue
Rename-Item "$path\OneAuth" "$path\OneAuth.bak" -ErrorAction SilentlyContinue
This parity between community instructions and Microsoft Q&A’s accepted responses has been the go‑to fix for many administrators and end users.

Safety notes and immediate caveats​

  • Renaming is safer than deletion because it preserves a fallback copy you can restore quickly.
  • This action resets local temporary state and cached tokens — it does not delete mail stored on Exchange/Exchange Online or Outlook.com. However, users may be prompted to reauthenticate (including MFA), and some UI settings or locally cached elements may need time to rebuild.
  • If you rely on locally stored PST files that are not stored under %localappdata%\Microsoft, confirm where those PST/OST files live before broad operations. Back up any local‑only archives if you’re unsure.

When the quick fix won’t work — follow‑up troubleshooting​

If removing or renaming Olk and OneAuth does not resolve startup, escalate troubleshooting in this order:
  • Launch the New Outlook in Safe Mode to rule out add‑ins (classic Outlook command-line method differs for the New Outlook).
  • Repair the app: Settings > Apps > Installed apps > Outlook > Advanced options > Repair, then Reset if Repair fails.
  • Reinstall using the offline/msix installer rather than the Store package; some users reported success by reverting or reinstalling a known‑good package.
  • Collect Event Viewer Application logs and note the exact exception code, process name (olk.exe) and faulting module (ucrtbase.dll or similar). This information is critical if you must escalate to Microsoft support.
  • If a new Windows profile opens Outlook normally, the problem is profile‑specific — keep backups of local-only data and consider migrating the user to a fresh profile.
  • Run SFC and DISM to rule out system file corruption:
  • sfc /scannow
  • DISM /Online /Cleanup-Image /RestoreHealth
If multiple devices are affected across a tenant, collect representative logs and timestamps before wide remediation; Microsoft’s engineering team will ask for this telemetry if a wider regression is suspected.

Enterprise considerations: how to deploy safely at scale​

For IT teams managing dozens or thousands of endpoints, ad hoc manual fixes are not sustainable. Adopt a controlled, minimal‑impact rollout:
  • Test the rename approach on a pilot group first; verify sign‑in success and that any conditional‑access or MFA flows complete smoothly.
  • Use user‑context automation (Intune Proactive Remediations, ConfigMgr run as user, or a logon script) to rename rather than delete folders. Renaming is reversible and safer for troubleshooting.
  • Communicate to end users in advance. Warn them they may be asked to sign in again and that the first launch may take longer while indexes and caches rebuild.
  • Keep backups of renamed folders for at least 24–72 hours during the pilot window so you can rollback quickly if the change produces unexpected outcomes.
Operational checklist for admins:
  • Capture Event Viewer errors and affected Outlook build numbers before remediation.
  • Pilot the change for a small, representative user set.
  • Deploy the rename remediation via user‑context management tools, not machine‑wide deletion scripts.
  • Monitor for recurrence over 24–72 hours. If the issue reoccurs across the fleet, escalate to Microsoft with collected logs.

Risks, limitations, and what to expect after the fix​

Deleting or renaming Olk and OneAuth is low risk when applied carefully, but there are tradeoffs administrators and users should know:
  • Reauthentication friction: Deleting OneAuth forces token reissuance and may trigger MFA or conditional access flows. Users who lack second‑factor devices or self‑service recovery paths may be temporarily locked out. Plan for helpdesk overhead.
  • Temporary slow first launch: The app rebuilds caches and search indexes; large mailboxes on slow storage will feel sluggish until indexing completes.
  • Not always permanent: For some users the fix is a one‑time remedy; for others the condition recurs until Microsoft ships a hard fix or a patched app is installed. Track recurrence rates during rollout.
  • Local‑only PST edge cases: If users have PSTs stored in non‑standard locations under profile folders, verify backups—don’t assume all locally stored mail lives in cloud mailboxes.

Alternatives and interim workarounds​

If the New Outlook remains unstable or the remediation is not appropriate for your environment, consider these alternatives:
  • Use Outlook on the web (Outlook.com / OWA) from Microsoft Edge or another browser. It’s fully functional for most mailbox tasks and avoids local client state entirely. This is the simplest temporary fallback.
  • Revert to the classic Outlook client if compatible with your environment and licensing. In some incidents a switch back to classic Outlook was the only reliable workaround until a patched New Outlook build was released.
  • Reinstall the New Outlook using the offline/msix installer instead of the Microsoft Store version; some reports indicate certain store‑delivered updates caused the problem for specific versions and channels.

Microsoft’s response and patch status (what the timeline shows)​

When this failure mode has appeared in the past, Microsoft’s community responses and service status updates indicate a typical operational pattern:
  • Community and Microsoft Q&A threads identified the issue and the Olk/OneAuth reset as an accepted remediation within hours of widespread reports.
  • In at least one event (August 2025) Microsoft pulled or reverted a problematic rollout and later delivered an updated New Outlook build that resolved the crash in telemetry. Independent reporting and community follow‑ups corroborated a fix being shipped in subsequent app builds.
  • However, local remediation remains necessary for many end users while updates propagate; administrators should treat the Olk/OneAuth reset as a practical, immediate mitigation rather than a root‑cause correction.
Because Microsoft’s delivery channels and app store propagation times vary by region and tenant, the timeline to a fully patched, permanent fix may be staggered — monitor official Microsoft service health notices and the Outlook update channel for confirmed build numbers that include the remediation.

How to automate the safe rename (example Intune/Proactive Remediation snippet)​

For organizations with Microsoft Intune, use a Proactive Remediation script that runs in the user context and renames rather than deletes:
  • Detection script (PowerShell) — check existence of folders and whether Outlook is failing to open (optional).
  • Remediation script:
    Code:
    $path = "$env:LOCALAPPDATA\Microsoft"
    try {
    if (Test-Path "$path\Olk") { Rename-Item "$path\Olk" "$path\Olk.bak" -ErrorAction SilentlyContinue
    }
    if (Test-Path "$path\OneAuth") { Rename-Item "$path\OneAuth" "$path\OneAuth.bak" -ErrorAction SilentlyContinue
    }
    } catch {
    # Log errors to local file for review
    "$($_.Exception.Message)" | Out-File -FilePath "$env:TEMP\OutlookFix.log" -Append
    }
  • Deploy to a pilot group first.
  • Ensure remediation runs in the user’s context (so you target the right LocalAppData).
  • Retain the .bak folders for 24–72 hours and then delete once you confirm success.

Practical recommendations — what readers should do right now​

  • End users: Try the rename remedy first (WIN+R → %localappdata%\Microsoft → rename Olk and OneAuth → relaunch Outlook). Back up any local PSTs first if you’re unsure where they live. Expect an MFA prompt.
  • IT admins: Pilot the rename via user‑context remediation, collect Event Viewer logs before and after, and prepare communications that explain temporary re‑sign in and potential initial slowness. Prefer rename over deletion for reversibility.
  • If the issue persists broadly: collect representative logs and escalate to Microsoft with exact timestamps and client build numbers; check the Microsoft service health dashboard and Q&A for confirmed mitigations and patched build numbers.

Critical analysis — strengths of the workaround and the operational risk it reveals​

The Olk + OneAuth reset has three major strengths:
  • Effectiveness: For a large proportion of affected machines the remedy is quick, reproducible and restores the UI without deleting server‑side mail or rebuilding user mailboxes from scratch.
  • Low invasiveness: Renaming local caches is non‑destructive and reversible, making it a safe first‑line remediation before escalating to heavier fixes.
  • Operational clarity: The pattern (silent launch failure + 0xc0000409 in Event Viewer + WebView/OneAuth artifacts implicated) maps cleanly to a cache/token corruption model, giving IT teams a clear triage path.
But the episode also surfaces systemic risks:
  • Fragility of per‑user local state: Modern clients that depend on ephemeral local caches and token blobs are exposed to partial‑write, update timing, or serialization bugs that can cause hard startup failures.
  • Upgrade and distribution risk: Store‑delivered updates and rapid rollout windows can deliver a defective build widely before remediation is in place, forcing IT teams into reactive firefighting.
  • User impact from reauthentication: Deleting auth caches may trigger MFA flows and conditional access blocks, creating additional helpdesk load and potential downtime for users without recovery options.
Organizations must therefore treat this not just as a one‑off fix but as a call to strengthen update testing, pilot rings and remediation runbooks for critical productivity apps.

Final takeaways​

  • If New Outlook refuses to open on a Windows PC, the fastest, lowest‑risk first step is to rename the Olk and OneAuth folders under %localappdata%\Microsoft and relaunch. This has been validated by Microsoft community staff and many independent reports.
  • The remedy addresses local cache and token corruption — it does not remove cloud mailbox content, but it will likely prompt reauthentication and initial resynchronization. Plan for MFA and short delays while the client rebuilds indexes.
  • For enterprises, automate the rename in user context, pilot broadly, and preserve backups for rollback. If the problem is widespread, gather logs and escalate to Microsoft for a permanent patch; Microsoft’s past pattern has been to revert rollouts and ship a fixed build once the root cause is addressed.
  • If you prefer to avoid the New Outlook entirely while issues are sorted, run Outlook in the browser or reinstall the classic Outlook client where your workflows permit.
This is an example of modern Windows application management: quick, community‑driven fixes can restore productivity in minutes, but the underlying fragility of per‑user runtime state means administrators must pair practical remediations with better update validation and concise runbooks. If the problem recurs or you need a scripted remediation tuned to your environment, follow the safe rename approach and keep logs to hand before contacting vendor support.

Source: PCWorld If Windows 11's new Outlook app refuses to open, try this