Fix NS_E_VIDCAPSTARTFAILED 0XC00D1B69: Camera won't start
Your camera driver's stuck or a privacy setting blocks it. Quick fix: restart the camera service or toggle privacy permissions.
Quick answer
Press Win+R, type services.msc, find Windows Camera Frame Server and Windows Camera Frame Server (Immersive), right-click each and pick Restart. If that doesn't stick, toggle camera access in Settings > Privacy & security > Camera.
Why this happens
This error shows up when Windows can't grab the camera feed. I've seen it most often after a Windows update resets privacy permissions, or when some app (like Zoom or Teams) holds onto the camera and doesn't let go. The error code 0XC00D1B69 specifically means the video capture device failed to start — usually a driver handshake issue. Had a client last month whose entire print queue died because of a similar USB controller conflict, but camera errors are even more common on laptops with built-in webcams.
Fix steps
Step 1: Restart camera services
- Press Win + R, type
services.msc, hit Enter. - Find these two services:
- Windows Camera Frame Server
- Windows Camera Frame Server (Immersive)
- Right-click each and choose Restart.
- Close Services, try the camera again.
Step 2: Check privacy settings
- Go to Settings > Privacy & security > Camera.
- Make sure Camera access is turned On.
- Scroll down and ensure your specific app (e.g., Camera, Zoom, Teams) has permission toggled on.
Step 3: Reset the camera driver
- Open Device Manager (right-click Start > Device Manager).
- Expand Cameras or Imaging devices.
- Right-click your webcam, choose Disable device.
- Wait 5 seconds, right-click again, pick Enable device.
Step 4: Run the camera troubleshooter
- Go to Settings > System > Troubleshoot > Other troubleshooters.
- Find Camera, click Run.
- Let it scan. It usually resets permissions or restarts services automatically.
Step 5: Check for hardware switch or driver update
Some laptops have a physical camera kill switch (think Lenovo ThinkPads). Look for a key with a camera icon on your F-row, or a switch on the side. Also in Device Manager, right-click the camera and pick Update driver > Search automatically for drivers.
Alternative fixes if the main steps fail
- Reinstall the camera driver: In Device Manager, right-click camera > Uninstall device (check "Delete the driver software for this device"), then restart Windows. It'll reinstall automatically.
- Check for app-specific conflict: Close all apps that might use the camera (Zoom, Teams, OBS). Open Task Manager and kill any leftover camera processes.
- Run SFC scan: Open Command Prompt as admin, type
sfc /scannow. I've seen corrupted system files mimic this error. - Disable fast startup: Go to Power Options > Choose what the power buttons do > Change settings that are currently unavailable > uncheck Turn on fast startup (recommended). This can fix USB camera enumeration issues on cold boots.
Prevention tip
After you fix it, open the Camera app once and let it run for 30 seconds. That forces Windows to register the device properly. Also, keep your webcam driver updated through your laptop manufacturer's site — generic Windows Update drivers often miss model-specific quirks. If you use an external USB camera, plug it directly into the motherboard port (not a hub) to avoid power issues.
Was this solution helpful?