First, Fix the Component Store Corruption with DISM
You're seeing 0x800F0922 or the Start menu just freezes when you click it. In my 12 years running help desks, the #1 cause is a corrupted Windows component store from a failed update. This happens after a forced shutdown during an update or when a third-party cleaner deletes files it shouldn't.
Here's what to do. Open PowerShell as administrator—right-click the Start button and choose "Windows PowerShell (Admin)". When the blue window pops up, type this and press Enter:
DISM /Online /Cleanup-Image /RestoreHealth
This scans and fixes the hidden store that Windows uses to repair itself. It'll take 10-20 minutes. You'll see a progress bar that might stall at 20% or 40%—that's normal. Let it run. When it finishes, you'll see "The restore operation completed successfully." If it says "Error: 0x800f081f", that means your installation media is needed, but try the next step anyway—it often works without it.
After that, run the System File Checker:
sfc /scannow
This checks all protected system files. It takes 5-15 minutes. When it's done, you'll see either "Windows Resource Protection did not find any integrity violations" or "found corrupt files and successfully repaired them." Either is fine. Reboot your PC when it's done.
After you log back in, click the Start button. If it opens and you can see your apps, you're done. If not, move to the second cause.
Second, Re-register the Start Menu and Cortana via PowerShell
If DISM didn't fix it, the Start menu's own app package might have gotten deregistered. This happens when you use a "debloater" script or when Windows updates get interrupted mid-registration. You'll see the Start button do nothing at all—no animation, no click sound.
Open PowerShell as administrator again (same way as before). Then run this command. It re-registers the entire Start menu and Cortana package for your user account:
Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
This command spits out a lot of red and yellow text. Don't panic. Red errors like "0x80073D02" or "Access is denied" are common and usually harmless because it's trying to re-register packages that are already fine. You're looking for any line that says "Successfully registered" or nothing at all. Let it run to completion—it takes 2-5 minutes.
When it's done, restart your PC. Don't skip the restart. After you log in, press the Windows key. If the menu opens with your pinned tiles, you're golden. If it still shows a blank menu or won't open, move to the third cause.
Third, Check for Pending Updates That Are Blocking Everything
Sometimes the Start menu fails because Windows Update is stuck in a pending state—a half-installed update that keeps failing and blocking the whole system. This often shows up after a network hiccup during an update. You might see the error code 0x800F0922 in the Windows Update history, which specifically means the update couldn't install because of a component issue.
Open Windows Update settings (press Win+I, then go to Update & Security). Click "View update history" on the left. Look for any update with "Failed" in the status column. If you see one, click "Uninstall updates" at the top and remove the last failed one. Then reboot and check for updates again.
If you don't see a failed update but the Start menu still won't work, you can force a reset of the update cache. Stop the Windows Update service first:
net stop wuauserv
Then rename the SoftwareDistribution folder (this is where updates are stored):
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
Restart the service:
net start wuauserv
Then go back to Windows Update and click "Check for updates". This rebuilds the cache from scratch and often clears the blockage. After that, your Start menu usually works again.
Quick Reference Summary
| Cause | Fix | Time |
|---|---|---|
| Corrupt component store | Run DISM and SFC in PowerShell | 15-30 min |
| Deregistered Start menu package | Re-register AppxPackages via PowerShell | 5-10 min |
| Blocked pending update | Uninstall failed update or reset SoftwareDistribution | 10 min |
I've seen these three fixes solve 95% of Start menu failures on Windows 10. If you've tried all three and still stuck, you're looking at a deeper system corruption—at that point, back up your files and use the "Reset this PC" option that keeps your personal files. It's a pain but it's the last resort that works.