How to Fix Windows 11 Apps Not Opening or Crashing Immediately After Launch

By Adhen Prasetiyo

Tuesday, April 28, 2026 • 6 min read

Windows 11 Start menu showing app icons where clicking them produces no response and apps fail to launch

How to Fix Windows 11 Apps Not Opening or Crashing Immediately After Launch

You click the Calculator app. Nothing happens. You click it again. Nothing. You click Photos. Nothing. You click Settings. Nothing. You right-click an app and select Open. Nothing.

Or maybe the apps start — you see the window begin to appear — and then instantly disappear. A flash of the app’s interface, gone in less than a second. No error message, no crash report, no explanation. Just a brief flicker and silence.

The strange part is that regular desktop programs work perfectly. Chrome opens. Word opens. Games open. Steam opens. Only the built-in Windows apps — Calculator, Photos, Camera, Calendar, Clock, Microsoft Store, Mail, and sometimes even Settings — refuse to start.

When multiple Windows apps fail simultaneously, the problem is not with the individual apps. The problem is with the platform that runs them.

The Windows App Platform

Windows 11 has two types of applications:

Traditional Win32 desktop applications — programs installed from .exe or .msi installers. Chrome, Firefox, Microsoft Office desktop, games, creative software. These run directly on the Windows API and manage their own files, registry entries, and dependencies.

UWP/WinUI applications — apps from the Microsoft Store and Windows built-in apps. Calculator, Photos, Camera, Settings, Mail, Calendar, Clock, Microsoft Store itself. These run inside a sandboxed container managed by the Windows App Platform, which handles app registration, file isolation, licensing, and runtime dependencies.

When the Windows App Platform is corrupted — by a failed update, a disk error, or a permission conflict — ALL UWP apps fail simultaneously. The platform cannot load the app containers, validate licenses, or provide the runtime environment the apps expect. Each app tries to start, finds that its platform dependencies are missing or broken, and crashes immediately.

Traditional Win32 desktop apps are completely unaffected because they do not use this platform.

Step 1: Reset the Specific App

If only one or two apps are broken while others work, the app-specific data is corrupted:

  1. Go to Settings → Apps → Installed apps
  2. Find the broken app (search for its name)
  3. Click the three dots (⋯) → Advanced options
  4. Scroll down to the Reset section
  5. Click Repair first — this attempts to fix the app without losing data
  6. If Repair does not work, click Reset — this clears all app data and returns it to factory state

Reset vs. Repair: Repair keeps your app data (saved preferences, recent files, login state) and attempts to fix only the application files. Reset deletes everything — app data, preferences, login state — and gives you a completely fresh app. Think of Repair as fixing the engine and Reset as buying a new car.

After Reset, the app should open normally. You will need to reconfigure any preferences or sign in again.

If Settings itself won’t open: you cannot access App settings through Settings. Instead:

  • Try the keyboard shortcut Windows + I to force-open Settings
  • Or open Command Prompt and type start ms-settings: (with the colon) to launch Settings via URI protocol
  • Or skip to Step 2 which does not require Settings

Step 2: Re-Register All Windows Apps (The Fix That Works)

This is the most effective fix for widespread app failures. It re-registers every Windows app package with the platform, fixing corrupt registration entries:

Open PowerShell as Administrator:

  • Search for “PowerShell” in Start → right-click → Run as administrator
  • Or: Task Manager → File → Run new task → type powershell → check “Create this task with administrative privileges” → OK

Run this command:

Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

The command takes 2 to 5 minutes to complete. You will see red error text appearing for some packages — this is normal and expected. System packages that are currently running cannot be re-registered while active, so they produce errors. The packages that were broken will be successfully re-registered.

After the command completes, restart your computer. Open the apps that were broken — they should now launch normally.

What this command does: every UWP app has a manifest file (AppXManifest.xml) that describes the app to the Windows App Platform — its name, version, capabilities, entry point, and dependencies. The -Register flag tells the platform to re-read this manifest and rebuild the app’s registration. If the previous registration was corrupted (missing entries, wrong paths, broken dependencies), the re-registration replaces it with a clean copy.

Step 3: Clear the Store Cache

The Microsoft Store maintains a cache of download data, license tokens, and app metadata. When this cache corrupts, apps that were installed or updated through the Store can fail to validate their licenses on launch, causing immediate crashes.

Press Windows + R, type wsreset.exe, press Enter.

A blank Command Prompt window appears and sits there for about 30 seconds. Do not close it. When it finishes, the Microsoft Store opens automatically, confirming the cache has been cleared.

Test your apps after the cache clear. Apps that were crashing due to license validation failures should now start normally.

Step 4: The Update Dependency Problem

Windows apps depend on the app platform runtime, and the platform is updated through Windows Update. When you delay or skip Windows updates, the platform version can fall behind what the apps expect. The apps received their own updates (through the Microsoft Store) but the platform did not keep up.

Go to Settings → Windows Update → Check for updates. Install everything:

  • Security updates
  • Cumulative updates
  • .NET Framework updates
  • Optional updates — expand “Optional updates” and install these too; they often contain app platform runtime updates

After installing all updates and restarting, the platform and apps should be version-compatible again.

Step 5: Profile Corruption Test

If apps work in Safe Mode or on a different user account but not on your main account, the corruption is in your user profile — specifically in the per-user app data stored in %localappdata%\Packages.

Test: create a new local user account (Settings → Accounts → Other users → Add account). Sign in to the new account and test the apps. If they work there, your original profile’s app data is corrupted.

Fix without creating a new profile: the app data for each UWP app is stored in a subfolder under %localappdata%\Packages. Each app has its own folder named after its package family. You can reset a specific app’s data by deleting or renaming its package folder:

  1. Navigate to C:\Users\YourName\AppData\Local\Packages
  2. Find the folder for the broken app (e.g., Microsoft.WindowsCalculator_8wekyb3d8bbwe for Calculator)
  3. Rename it (e.g., add .old to the end)
  4. Restart the app — Windows creates a fresh data folder

This is the manual equivalent of the Reset button in Settings but works even when Settings itself is broken.

Windows apps failing to open is one of those problems that looks catastrophic but has a straightforward fix. The PowerShell re-registration command is the single most effective solution, fixing the platform-level corruption that causes all UWP apps to fail simultaneously. It takes 5 minutes, requires no downloads, and works in the vast majority of cases.

Step-by-Step Guide

1

Reset the specific app that is not opening

Go to Settings then Apps then Installed apps. Find the app that is not working and click the three dots menu. Select Advanced options. Scroll down and click the Repair button first. If repair does not fix it click the Reset button. Reset clears all app data and returns it to factory state which fixes corrupt app configurations. This works for most built-in Windows apps like Calculator, Photos, Camera, Calendar, and Mail. If the app does not have Advanced options or if Settings itself is not opening skip to Step 2.

2

Re-register all Windows apps via PowerShell

Open PowerShell as Administrator. If you cannot open it from Start press Ctrl plus Shift plus Esc for Task Manager then File then Run new task then type powershell and check Create this task with administrative privileges. Run this command. Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}. Wait for it to complete which takes 2 to 5 minutes. You will see red error messages for some packages which is normal because some system packages cannot be re-registered. After completion restart your computer. This re-registers every Windows app package fixing corrupt registrations that prevent apps from launching.

3

Clear the Windows Store cache

Press Windows plus R and type wsreset.exe and press Enter. A blank command prompt window appears for about 30 seconds then the Microsoft Store opens automatically. This clears the Store download cache and license database which can fix apps that installed or updated incorrectly. After the cache clear try opening the problematic app again. If the app was installed from the Store a corrupted cache entry can prevent it from validating its license on launch causing an immediate crash.

4

Check Windows Update and install pending updates

Go to Settings then Windows Update and click Check for updates. Install all available updates including optional updates. Many app crashes in 2026 were caused by version mismatches between the Windows app platform and the apps themselves. The app platform is updated through Windows Update and if the platform version is older than what the app expects the app crashes on launch. Installing all pending updates ensures the app platform and the apps are version-compatible.

5

Create a new user profile to isolate profile corruption

If apps work in Safe Mode or on a new user account but not on your main account your user profile has corrupt app data. Go to Settings then Accounts then Other users then Add account. Create a local account and sign in. Test the apps. If they work the problem is isolated to your original profile. You can migrate your files to the new account or try resetting the app data in your original profile by deleting the contents of %localappdata%\Packages for the specific app folder.

Frequently Asked Questions

Why do only Microsoft Store apps crash while other programs work fine?
Microsoft Store apps are UWP or WinUI apps that run in a sandboxed container managed by the Windows app platform. This platform handles app registration, licensing, storage isolation, and runtime dependencies. When the platform itself is corrupted all UWP apps fail simultaneously while traditional Win32 desktop programs like Chrome, Firefox, Office desktop, and games continue to work because they do not depend on the UWP platform. The PowerShell re-registration in Step 2 repairs the platform registration which fixes all UWP apps at once.
Settings app itself will not open. How do I access Settings?
If Settings will not open try these alternatives. Press Windows plus I which is the keyboard shortcut for Settings. If that does not work open Command Prompt or PowerShell and type start ms-settings colon which launches Settings through a URI protocol. If Settings still fails to open access individual settings through Control Panel which is a separate application not affected by UWP app crashes. You can also run the PowerShell re-registration command from Step 2 without needing Settings first.
I re-registered all apps but they still crash. What else can I try?
If re-registration does not work the Windows component store itself may be corrupted. Open Command Prompt as Administrator and run DISM /Online /Cleanup-Image /RestoreHealth. This repairs the component store from which app packages are registered. After DISM completes run the PowerShell re-registration command again. If apps still fail try creating a new user profile as described in Step 5 because the corruption may be in your user-specific app data rather than in the system-wide component store.
Can I uninstall and reinstall a built-in Windows app?
Yes most built-in apps can be uninstalled and reinstalled. Right-click the app in the Start menu and select Uninstall. Then open the Microsoft Store search for the app name and click Install. This gives you a fresh copy of the app with no data carryover. Some system apps like Settings and Microsoft Edge cannot be uninstalled through normal means but can be repaired or re-registered through PowerShell. The app reset option in Settings then Apps then Advanced options is equivalent to a clean reinstall without removing the app first.
Adhen Prasetiyo

Research Bug bounty at javahack team

Research Bug bounty Profesional

Web Development Research Bug Hunter
View all articles →