Camera error 0xA00F4244 — "We can't find your camera"
The camera exists but something is refusing access — privacy settings, a hardware kill switch, a policy, or another application holding it.
What you see
The Camera app shows 0xA00F4244 and Teams or Zoom show a black rectangle. The device may or may not appear in Device Manager.
What is actually wrong
In order of frequency: the physical privacy shutter or Fn key, the per-application camera permission, an antivirus webcam guard, a Group Policy blocking it, and only then a driver fault.
Codes and articles
Fixes (2)
Work through the permission layers in order
The device is present. There are four separate gates and any one closes the camera.
Check the physical shutter and the Fn key first. Many business laptops have both, and the Fn toggle survives reboots silently.
Open the privacy page and check camera access at the system level, then per app.
Start-Process ms-settings:privacy-webcamCheck the desktop-app toggle separately. Teams and Zoom are desktop applications and are governed by "Let desktop apps access your camera" at the bottom of that page, not by the per-app list above it.
This is the single most common cause of a camera that works in the Camera app and not in Teams — two different toggles on the same page, and the one that matters is below the fold.
Check for a policy blocking it.
Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\webcam' -ErrorAction SilentlyContinue | Format-List ValueCheck the antivirus for a webcam protection feature and allow the application there.
Reinstate the camera device
It is missing from Device Manager or shows an error.
Look for it, including hidden devices — a disabled camera hides by default.
Get-PnpDevice -Class Camera,Image -Status OK,Error,Unknown | Format-Table Status,Class,FriendlyName,InstanceIdIf it is disabled, enable it.
Get-PnpDevice -Class Camera | Where-Object Status -eq 'Error' | Enable-PnpDevice -Confirm:$falseIf it is absent entirely, check the BIOS — most business laptops can disable the camera at firmware level, and it then does not exist as far as Windows is concerned.
A camera disabled in firmware produces exactly the same error as a driver fault, and no amount of work in Windows will find it. Checking the BIOS takes two minutes and rules out the invisible cause.
Reinstall the manufacturer's camera and chipset drivers, and run a scan for hardware changes.
pnputil /scan-devices
Get-PnpDevice -Class Camera | Format-Table FriendlyName,Status,ProblemWhere this stops. This write-up was written and checked by hand. It says what each step changes, how to confirm it worked and how to reverse it, and anything destructive is flagged before you reach it. If it does not match what your machine is doing, search the Support Centre for the exact code or message — and when something needs a person, get in touch.