What triggers this error
You double-click a program or install a browser extension. Instead of opening, you get a popup: "Windows cannot open this program because it has been disabled." The error code is 0x000004FD. This happens most often with Internet Explorer add-ons, Microsoft Edge extensions, or standalone apps that try to integrate with your browser.
The fix depends on what you're trying to run. Let's start with the fastest check — it takes 30 seconds.
Quick fix (30 seconds) — Unblock the file
- Right-click the program's .exe file or shortcut. Choose Properties.
- Go to the General tab. Look at the bottom of the window. Do you see a checkbox that says Unblock next to "This file came from another computer"? If yes, check that box. Click Apply, then OK.
- Try opening the program again.
If you don't see the Unblock checkbox, the file isn't blocked by Windows. Move to the moderate fix.
Moderate fix (5 minutes) — Enable the browser extension or add-on
This error often means the add-on was disabled in your browser. If you're trying to install a browser extension, check these steps:
For Microsoft Edge
- Open Edge. Click the three dots (...) in the top right. Choose Extensions > Manage extensions.
- Find the extension that gave you the error. If it's listed but the toggle is off, click the toggle to turn it on.
- If it's not listed at all, you may need to install it again. Download from the official store.
For Internet Explorer (still used by some legacy apps)
- Open IE. Click the gear icon (top right). Choose Manage add-ons.
- In the left panel, click All add-ons. Look for the disabled add-on — it will say "Disabled" in the Status column.
- Select it. Click Enable at the bottom right. Then click Close.
- Try running your program again.
If the program still won't run, the problem is deeper — Group Policy or a registry setting is blocking it.
Advanced fix (15+ minutes) — Check Group Policy and registry
This error 0x000004FD can also be caused by a Group Policy that disables specific programs. This is common in work or school computers where IT restricts what you can run.
Step 1: Check Group Policy
- Press Windows Key + R. Type
gpedit.mscand hit Enter. (If you get an error saying gpedit is not found, you're on Windows Home edition — skip to the registry fix below.) - Go to Computer Configuration > Administrative Templates > Windows Components > Internet Explorer (or Microsoft Edge, depending on the program).
- Look for a policy named something like "Disable add-ons" or "Turn off add-on management". If it says Enabled, double-click it, set it to Not Configured or Disabled, then click OK.
- Open a command prompt as admin (right-click Start, choose Command Prompt (Admin) or Terminal (Admin)). Type
gpupdate /forceand press Enter. Wait for it to finish. - Restart your computer and try the program again.
Step 2: Registry fix (if needed)
If Group Policy didn't work — or you're on Windows Home — the registry is the next place to look.
Warning: Messing with the registry can break things. Back it up first. In Regedit, go to File > Export, save a backup of the whole registry.
- Press Windows Key + R, type
regedit, hit Enter. - Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer\Restrictions
If that path doesn't exist, you're fine — skip to the next key. If it exists, look for a DWORD named NoExtensionManagement. If it's set to 1, double-click it and change it to 0. Then restart. - Now check:
HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Internet Explorer\Restrictions
Same deal — find NoExtensionManagement, set it to 0 if it's 1. - Also check both locations for a DWORD called DisableAddons or DisableAddonManagement. If you see them set to 1, change them to 0.
- Close Regedit. Restart your computer.
Step 3: Reset Windows Store cache (for store apps)
If the blocked program is a Microsoft Store app or a browser extension from the Store, try this:
- Press Windows Key + R, type
wsreset.exe, press Enter. - A black window will flash. Wait for it to close by itself. Then try opening the program again.
Still stuck? Run SFC and DISM
Sometimes the real problem is corrupted system files. This is rare but worth a shot before giving up:
- Open Command Prompt as admin (right-click Start, choose Command Prompt (Admin) or Terminal (Admin)).
- Type
sfc /scannowand press Enter. Wait for it to finish — this can take 15 minutes. - After that, type
DISM /Online /Cleanup-Image /RestoreHealthand press Enter. Let it run to completion. - Restart your PC.
If you've tried all these steps and the error still shows up, the program itself is likely corrupt or incompatible with your version of Windows. Try downloading a fresh copy from the official source. If it's a work computer, talk to your IT department — they may have set a policy you can't override.