0XC00D1B64

NS_E_VIDEODEVICE_BUSY (0XC00D1B64) Fix: Webcam in Use

Windows Errors Beginner 👁 1 views 📅 May 27, 2026

Your webcam is stuck saying it's busy. This usually means another app grabbed it and won't let go. Start with the quick fix: close all camera apps.

What's Actually Happening

The error NS_E_VIDEODEVICE_BUSY with code 0XC00D1B64 means Windows Media Foundation can't grab the camera. It's not broken hardware—some other process has an exclusive lock on it. On Windows, only one app can talk to the camera at a time (that's why Zoom and Teams fight over it). The lock doesn't always release cleanly when an app crashes or exits abruptly.

Quick Fix: Close All Camera Apps (30 seconds)

This fixes 80% of cases. You don't need to restart anything.

  1. Close every app that might use the camera: Zoom, Teams, Skype, Discord, OBS, Camera app, browser tabs with video calls.
  2. Check the system tray (bottom-right near clock) for hidden icons. Right-click those apps and choose Quit or Exit.
  3. Wait 5 seconds, then reopen your app and try the camera again.

If that works, you're done. The reason this works: closing apps forces them to release the video capture device handle. Some apps minimize to tray but keep the lock alive—that's why you need to fully quit them, not just close the window.

Moderate Fix: Kill Stuck Processes (5 minutes)

Sometimes an app crashes silently but its process stays alive holding the camera. The quick fix won't help here because no visible window exists. You need Task Manager.

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Go to the Processes tab.
  3. Look for any of these running processes: Camera.exe, WindowsCamera.exe, Teams.exe, Zoom.exe, Discord.exe, obs64.exe, Skype.exe, slack.exe.
  4. Select each one and click End Task.
  5. Try the camera again.

If you still get the error, look deeper. Check for background services or system processes. On Windows 10/11, the Camera Frame Server (FrameServer.exe) can sometimes hang. To kill it safely: open Task Manager, go to Details tab, find FrameServer.exe, end it. Windows will restart it automatically when needed.

Advanced Fix: Reset the Camera Stack (15+ minutes)

This is for when nothing above works—usually after a driver crash or a Windows update that borked camera permissions. You're resetting the entire camera subsystem.

Step 1: Run the Camera Troubleshooter

Yes, the built-in tool. It's not magic but it resets some internal flags that a manual restart won't touch.

  • Open SettingsSystemTroubleshootOther troubleshooters.
  • Find Camera and click Run.
  • Follow the prompts. It'll likely find nothing, but the reset it performs can unstick the device.

Step 2: Restart the Windows Camera Service

The service that manages camera access is called Windows Camera Frame Server. It runs under the svchost.exe umbrella. Restarting it releases any lingering locks.

net stop FrameServer
net start FrameServer

Run those commands as Administrator. If you prefer the GUI: open services.msc, find Windows Camera Frame Server, right-click → Restart.

Step 3: Reset Camera Permissions

Windows 10/11 added per-app camera permissions that can get stuck. Revoking and re-granting access forces a fresh handshake.

  • Open SettingsPrivacy & securityCamera.
  • Toggle Camera access off, wait 5 seconds, toggle it back on.
  • Also toggle off/on the per-app permissions for the app you're trying to use.

Step 4: Disable and Re-enable the Device

This forces a driver reload and re-enumeration on the USB/PCI bus.

  1. Open Device Manager (right-click Start → Device Manager).
  2. Expand Cameras or Imaging devices.
  3. Right-click your webcam → Disable device.
  4. Wait 10 seconds, right-click again → Enable device.

If your camera is built-in (laptop), also check under System devices for something like Camera Platform or Camera IR Sensor—disable/re-enable those too.

Step 5: Reinstall the Camera Driver

Only do this if the error persists. A corrupt driver can hold a phantom lock.

  1. In Device Manager, right-click your webcam → Uninstall device.
  2. Check the box Delete the driver software for this device if available.
  3. Restart your PC. Windows will reinstall the driver automatically. If not, go to your laptop or webcam manufacturer's site and download the latest driver manually.

Still Broken? Check Hardware

If you've done all the above and the error won't die, the camera itself might be physically locked. Some laptops have a physical privacy shutter—make sure it's open. On some Dells and Lenovos, pressing F10 or F8 toggles a hardware camera disable. Look for a camera icon on your keyboard function keys. Also check if the camera is recognized in Device Manager at all—if it's missing with a yellow bang, that's a different problem (driver or hardware failure).

One more corner case: If you're using a USB webcam, try a different USB port. I've seen a flaky USB controller report the device as busy even when it's not. USB 2.0 vs 3.0 ports can behave differently with older cameras.

Was this solution helpful?