NS_E_DRM_LICENSE_APPSECLOW: Why DRM Thinks Your System Is Unsafe (0XC00D27DA)
This error means Windows Media Player or Xbox app thinks your DRM security is too low. Usually from outdated components or a corrupted license store. Fix is quick.
1. Corrupt DRM License Store — The Most Common Cause
I've seen this error on maybe two dozen machines. Nine times out of ten, it's a corrupted DRM license store. Windows keeps your media licenses in a hidden folder, and when that folder gets wonky, apps like Windows Media Player, Xbox app, or any PlayReady-based thing throw up this error.
Had a client last month — a small law firm — couldn't play training videos on their new Windows 11 laptops. Same error every time. We tried everything until I remembered this trick.
Here's the fix: Reset the DRM store completely. It's safe. Windows rebuilds it automatically.
- Press Win + R, type
services.msc, hit Enter. - Find Windows Media Player Network Sharing Service. Right-click and Stop it.
- Now press Win + R again, type
%PROGRAMDATA%\Microsoft\PlayReady, hit Enter. - Delete everything inside that folder. Don't delete the folder itself — just the files inside.
- Open
%LOCALAPPDATA%\Microsoft\Media Playerand delete everything there too. - Restart your PC.
After restart, the services will recreate the license store. Try playing your media again. This fixes about 80% of cases.
Note: If you use Xbox Game Pass or movies bought through Microsoft Store, you might need to sign in again afterward. That's normal.
2. Missing Media Feature Pack (N or KN editions of Windows)
If you're on a Windows 10 or 11 N edition (common in Europe), you're missing Media Features by default. Microsoft strips out Windows Media Player and related DRM stuff to comply with EU rules. But then apps that need DRM — like Xbox app or even some video editors — choke with this error.
I helped a guy last week who thought his gaming laptop was broken. He'd bought it in Germany. Turned out it was an N edition. Added the Media Feature Pack and the error vanished.
Fix it like this:
- Go to Settings > Apps > Optional features.
- Click Add a feature.
- Search for Media Feature Pack.
- Select it and click Install.
- Restart after install completes.
If you don't see it there, download it directly from Microsoft's site. Search "Media Feature Pack for Windows 10/11 N" — get the one matching your exact build number (check with winver).
3. Outdated or Corrupt mfplat.dll
This one's less common but I've seen it. The file mfplat.dll is part of Microsoft Media Foundation. If it's missing, old, or corrupt, DRM apps can't talk to the hardware properly. Usually happens after a failed Windows Update or if you installed some sketchy codec pack.
Check it and fix it:
- Press Win + R, type
cmd, press Ctrl + Shift + Enter to run as admin. - Run this command to check the file:
sfc /scanfile=C:\Windows\System32\mfplat.dll - If it reports corruption, run a full system scan:
sfc /scannow - If still broken, run
DISM /Online /Cleanup-Image /RestoreHealth - Restart.
After that, try your app again. If the error persists, you might need to manually replace mfplat.dll from a good copy. But that's a deeper dive — try the first two fixes first.
Quick-Reference Summary Table
| Cause | Fix | Time |
|---|---|---|
| Corrupt DRM license store | Delete files in %PROGRAMDATA%\Microsoft\PlayReady and %LOCALAPPDATA%\Microsoft\Media Player |
5 min |
| Missing Media Feature Pack (N edition) | Install Media Feature Pack via Settings > Optional features | 10 min |
| Corrupt mfplat.dll | Run sfc /scannow and DISM |
15 min |
That's it. Start with the license store reset — that's the real fix 9 out of 10 times. If you're on an N edition, jump straight to the Media Feature Pack. The mfplat.dll thing is a backup plan if the others fail.
Was this solution helpful?