0X000005B0

Fix ERROR_MENU_ITEM_NOT_FOUND (0X000005B0) in Windows

Windows Errors Beginner 👁 0 views 📅 Jun 9, 2026

This error means Windows can't find a menu item in an app or system dialog. Usually a corrupted shortcut or broken context menu entry. Easy to fix.

The 30-Second Fix: Rebuild the Broken Shortcut

This error pops up when Windows tries to open a menu item that doesn't exist anymore. The culprit is almost always a shortcut pointing to a deleted program, or a context menu entry left behind after uninstalling an app.

If you see this error inside a specific program (like File Explorer or a third-party app), try this first:

  1. Right-click the shortcut you're using and select Properties.
  2. Check the Target field. Does it point to an .exe that's still there? If not, you know the problem.
  3. Delete that shortcut. Create a new one by finding the actual program .exe in C:\Program Files or C:\Program Files (x86), right-click it, and select Send to > Desktop (create shortcut).

That fixes maybe 40% of cases. If it doesn't, move on.

The 5-Minute Fix: Clear Corrupted Context Menu Entries

When the error shows up when you right-click a file or folder, it's a context menu handler that's broken. Shell extensions from old software — like old WinRAR, 7-Zip, or antivirus tools — leave entries behind after uninstall.

Don't manually edit the registry here unless you know exactly which entry is bad. Use a tool instead. I've been using ShellExView (NirSoft) for years. It's free, portable, and won't mess up your system.

  1. Download ShellExView from NirSoft's site.
  2. Run it as Administrator.
  3. In the Type column, look for entries marked Context Menu. Sort by that column.
  4. Disable any entry from software you uninstalled. The Company Name column helps identify them.
  5. Restart File Explorer (or reboot).

If the error's gone, re-enable those entries one by one to find the exact culprit. Then uninstall that software properly using Revo Uninstaller or a similar tool that cleans leftovers.

The 15+ Minute Fix: Repair Windows System Files

If you're still stuck, Windows itself might have a corrupted file. This is rarer — maybe 10% of cases — but it happens. I've seen it most after failed Windows updates or disk errors.

Run these commands in order. Don't skip the first one thinking it won't help:

  1. Open Command Prompt as Administrator. (Press Win+X, select Terminal (Admin) or Command Prompt (Admin).)
  2. Run sfc /scannow. Let it finish. It'll replace corrupted system files from a cached copy. Takes 5-15 minutes.
  3. If SFC finds errors but can't fix them, run DISM /Online /Cleanup-Image /RestoreHealth. This pulls fresh files from Windows Update. Takes another 10-20 minutes.
  4. Reboot. Test the error again.

Still no luck? Check your hard drive for bad sectors. Open an Admin Command Prompt and run chkdsk C: /f /r. It'll schedule a check on next reboot. Restart and let it run. This can take an hour, but if your disk has physical errors, it's the only fix.

When to Just Give Up and Reinstall

Honestly? If you've done all three steps above and the error still shows up, something deeper is wrong. Maybe a bad driver, a malware infection that's tampered with system menus, or a corrupted user profile. The fastest path here is to backup your data and do a Windows reset (keep files option) from Settings > System > Recovery.

Don't waste more than two hours on a single menu error. Life's too short.

Was this solution helpful?