Fix NS_E_FEATURE_DISABLED_BY_GROUP_POLICY (0XC00D0BDC)
Windows Media Player or other media apps throw this error when group policy blocks a feature. We'll fix it in steps, from a quick refresh to digging into policy settings.
Quick Fix (30 seconds)
First, don't panic. I've seen this error pop up on clean Windows 11 builds after a feature update. It's often a glitch in the group policy cache, not a real block.
Run gpupdate /force in an elevated command prompt—hit Start, type cmd, right-click Command Prompt, choose Run as administrator. Type:
gpupdate /force
Wait for it to finish. Then restart Windows Media Player or your media app. If you're still seeing 0XC00D0BDC, move to the next step.
Moderate Fix (5 minutes)
This error usually means Windows Media Player or related media features got turned off, either by accident or by a group policy setting on a work or school PC. Let's check that.
1. Turn on Media Features
Open Control Panel > Programs > Turn Windows features on or off. Find Media Features. Expand it—make sure Windows Media Player is checked. If it's grayed out or missing, you've got a policy issue (next section).
Apply and restart. Test again.
2. Check Local Group Policy
If you're on Windows Pro or Enterprise, press Win + R, type gpedit.msc, hit Enter. Navigate to:
Computer Configuration > Administrative Templates > Windows Components > Windows Media Player
Look for Do Not Allow Windows Media Player to Run. Double-click it. If it's set to Enabled, change it to Not Configured or Disabled. Click OK.
Also check Computer Configuration > Administrative Templates > Windows Components > Windows Media Digital Rights Management (DRM) and make sure nothing is blocking playback there.
Run gpupdate /force again. Restart and test.
Advanced Fix (15+ minutes)
If the previous steps didn't work, the policy is likely enforced via registry—either by a domain controller (work/school PC) or a leftover registry key from a previous policy.
1. Registry Edit
Backup your registry first: File > Export in regedit. Then navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer
If you see a DWORD called DisableMediaPlayer with value 1, double-click it and set it to 0. If it's not there, you can create it (but set to 0).
Also check:
HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMediaPlayer
Same deal—set DisableMediaPlayer to 0. If the key doesn't exist, you're good.
2. Enable Media Features via DISM
Sometimes Windows itself thinks Media Features are fully disabled. Run this in admin PowerShell:
dism /online /enable-feature /featurename:MediaPlayback /all
Wait for the operation to complete (100%). Then check:
dism /online /get-features /format:table | findstr "Media"
Make sure MediaPlayback shows Enabled. If not, reboot and retry.
3. Quick Network Discovery Check
This error can also fire when your app tries to access shared media over a network, and group policy blocks network discovery. Go to Control Panel > Network and Sharing Center > Advanced sharing settings. Turn on Network discovery for your active profile (Private). Apply.
Finally, restart your PC. Open Windows Media Player, try playing a local file or a network stream. If it works, you're done.
If none of this helps, your PC is likely managed by a domain policy—contact your IT admin. They can unblock the feature or give you an alternate media player. Sorry—sometimes corporate security is a pain.
Was this solution helpful?