You double-click a movie you rented or a song you bought, and instead of playing, Windows throws 0XC00D2763 in your face. Annoying, right? Let's fix it.
Step 1: Kill Windows Media Player and related services
If WMP or anything using the DRM store is running, you can't delete the files. Close every instance of Windows Media Player, Groove Music, and Movies & TV. Also close browsers — Edge and Chrome can hold DRM handles if a streaming tab is open.
Now open Task Manager (Ctrl+Shift+Esc), find any wmplayer.exe, wmpnetwk.exe, or Microsoft.Media.Player processes, and end them.
Step 2: Delete the corrupted DRM store
The DRM database lives in a hidden folder. Open File Explorer, paste this into the address bar, and hit Enter:
%ALLUSERSPROFILE%\Microsoft\Windows\DRM
You'll land in C:\ProgramData\Microsoft\Windows\DRM. Select everything inside and delete it. If Windows refuses because a file is in use, reboot into Safe Mode and try again — you'll have no locks there.
Don't delete the DRM folder itself, just its contents. Windows recreates the store on next launch.
Step 3: Re-register the DRM components
Open Command Prompt as Administrator. Run these two commands one at a time:
regsvr32 wmp.dll
regsvr32 wmnetmgr.dll
You should see a confirmation popup for each. If either DLL is missing, your Windows Media Player install is broken — go to Settings > Apps > Optional features and reinstall "Media Feature Pack" (mostly a Windows N edition issue).
Step 4: Restart and re-authorize your content
Reboot. Open Windows Media Player, then try playing the file that threw the error. WMP will silently re-download the license from the provider. If it's a subscription service (old Napster, Rhapsody, etc.), you may need to sign in again — the store was wiped, so credentials are gone too.
Why this works
0XC00D2763 literally means "unable to create authentication object." When a protected file plays, WMP asks the DRM subsystem to spin up an authentication object that talks to the license server. That object is built from the local DRM store — a small pile of encrypted blobs and registry entries.
If any of those blobs are corrupted (partial write during a crash, antivirus quarantine, disk error, or an interrupted license update), the object can't be built, and you get 0XC00D2763. Deleting the store forces Windows to rebuild it from scratch. Re-registering the DLLs makes sure the code paths that call into the store are intact.
Had a client last month — small law office, four machines — where a Symantec quarantine silently removed two files from the DRM folder after a signature update. Every rented training video they had refused to play. Deleting the store contents and letting WMP rebuild fixed all four in under ten minutes.
Less common variations
Error persists after the fix
Check that %ALLUSERSPROFILE%\Microsoft\Windows\DRM is actually writable. Right-click the folder, Properties > Security. SYSTEM and Administrators need Full Control. Some "privacy" tweak tools lock this down and cause exactly this error.
Windows N editions
If you're on Windows 10/11 N, the Media Feature Pack isn't installed by default. That means no DRM codecs at all. Grab it from Microsoft's site or via Settings > Apps > Optional features > Add a feature > Media Feature Pack.
Corrupted user profile
Rare, but if the DRM rebuild works for other users on the same PC and not yours, your NTUSER.dat has issues. Create a new local account, sign in, and test. If it works, migrate your data and retire the old profile.
Group Policy blocking DRM
On managed machines, an admin might have enabled "Prevent Windows Media DRM Internet Access." That's Computer Configuration > Administrative Templates > Windows Components > Windows Media Player. With that on, the authentication object can't phone home and 0XC00D2763 becomes permanent.
Prevention
- Exclude
C:\ProgramData\Microsoft\Windows\DRMfrom antivirus real-time scanning. Yes, really — the store is encrypted, and aggressive scanners break it. - Don't hard-power-off while a license is downloading. Let WMP finish the "Acquiring license..." step before you shut down.
- Run
chkdsk /foccasionally on the system drive. Bad sectors in ProgramData cause exactly this kind of corruption. - Back up the DRM folder once it's healthy. If it breaks again, restore the folder instead of re-downloading licenses — faster and works offline.
- Keep a copy of the licensed media files on an external drive. If the provider's license server disappears (it happens), your local copy is all you've got.
That's it. Nine times out of ten, deleting the DRM store and re-registering the DLLs puts you back in business within five minutes. If it doesn't, the variations above will get you the rest of the way.