Complete Windows 11 Audio & Video Troubleshooting Guide [2026]
Quick Answer: Windows 11 audio and video issues typically stem from driver problems, incorrect settings, or hardware conflicts. This comprehensive guide covers all common issues with step-by-step fixes, PowerShell commands, and diagnostic tools.
Table of Contents
- Audio Issues
- Microphone Problems
- Video & Display Issues
- Camera Problems
- Bluetooth Audio
- Quick Diagnostics
- When to Use Againly
Audio Issues
Common Audio Problems on Windows 11
| Issue | Quick Fix | Collector |
|-------|-----------|-----------|
| No sound from speakers | Check default device and restart audio service | check_audio_stack |
| Audio crackling/popping | Change sample rate to 48000Hz, disable enhancements | check_audio_stack |
| Sound lower than 100% | Disable all audio enhancements | check_audio_stack |
| Audio out of sync | Update graphics and audio drivers | check_audio_stack |
| Speakers buzzing | Check cables, move from interference | check_audio_stack |
| Surround sound not working | Configure 5.1/7.1 in sound settings | check_audio_stack |
| Subwoofer not working | Set speaker configuration to 2.1 | check_audio_stack |
| Audio service not running | Start Windows Audio service | check_audio_stack |
Audio Diagnostic Commands
# Check audio devices
Get-PnpDevice -Class AudioEndpoint | Select Name, Status
# Test audio stack
Get-Service Audiosrv
# Check default audio device
Get-AudioDevice -Playback | Where-Object {$_.Default -eq $true}
Quick Audio Fix Steps
-
Check Physical Connections
- Ensure speakers/headphones firmly connected
- Test with different cable
- Check volume knob on speakers
-
Verify Default Device
Control Panel → Sound → Playback → Right-click device → Set as Default -
Restart Audio Services
Restart-Service Audiosrv Restart-Service AudioEndpointBuilder -
Update Drivers
Get-PnpDevice -Class AudioEndpoint | Update-PnpDevice
Microphone Problems
Common Microphone Issues
| Issue | Solution | Related Blog |
|-------|----------|--------------|
| Mic not working in Teams | Check Teams audio settings, test in Windows | Teams mic fix |
| Mic volume auto-adjusting | Disable "Automatically adjust mic volume" | check_teams_specific |
| Mic static/buzzing | Lower mic level to 70%, check interference | check_audio_stack |
| Echo in microphone | Use headphones, disable listen to this device | check_audio_stack |
| Mic muted but picking up sound | Disable exclusive mode | check_audio_stack |
| Mic levels reset after reboot | Disable app exclusive control | check_audio_stack |
| Bluetooth headset stuttering | Disable Teams audio processing | check_teams_specific |
Microphone Quick Commands
# List recording devices
Get-PnpDevice -Class AudioEndpoint | Where-Object {$_.FriendlyName -like "*Microphone*"}
# Check mic properties
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Capture"
# Test microphone
mmsys.cpl → Recording → Speak → Watch green bars
Video & Display Issues
Display Problems Matrix
| Symptom | Likely Cause | Quick Fix | Deep Dive | |---------|--------------|-----------|-----------| | No signal | Cable/connection | Reseat HDMI/DP | HDMI no signal fix | | Blurry text | Scaling issue | Set 100% or integer scaling | Second monitor blurry | | Wrong resolution | Driver issue | Update GPU driver | Display topology fix | | Flickering | Cable/c refresh rate | Change refresh rate | Screen flashing fix | | Not detected | Driver/power | Detect displays manually | Monitor not detected | | Color issues | Calibration | Reset color profile | Night light stuck |
Display Diagnostic PowerShell
# Get display information
Get-CimInstance -Namespace root\wmi -ClassName WmiMonitorBasicDisplayParams
# Check display adapters
Get-PnpDevice -Class Display | Select Name, Status
# View screen resolution
Get-DisplayResolution
Monitor Configuration Best Practices
-
Use Correct Cable Type
- 4K@60Hz+: HDMI 2.0+ or DisplayPort 1.2+
- High refresh (144Hz+): DisplayPort preferred
- VGA: Limited to 1080p, analog signal
-
Set Correct Scaling
- 1080p: 100%
- 1440p: 125-150%
- 4K: 150-200%
-
Match Refresh Rate Settings → System → Display → Advanced display → Choose native refresh rate
Camera Problems
Webcam Issues Guide
| Problem | Cause | Solution | Collector |
|---------|-------|----------|-----------|
| Black screen | Privacy settings | Enable camera access in Privacy | check_display_topology |
| Camera blocked by app | Another app using it | Close Teams/Zoom, restart FrameServer | check_display_topology |
| Webcam flickering | Light frequency | Set to 50Hz/60Hz | check_display_topology |
| Webcam too dark | Backlighting | Add front lighting | check_display_topology |
| Camera upside down | Driver issue | Flip in app settings | check_display_topology |
Camera Quick Diagnostics
# Check camera devices
Get-PnpDevice -Class Camera | Select Name, Status
# Restart camera frame server
Restart-Service -Name "FrameServer"
# Check privacy settings
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\webcam"
Bluetooth Audio
Bluetooth Audio Troubleshooting
| Issue | Solution | Blog |
|-------|----------|------|
| AirPods no sound | Set as default playback AND recording | check_audio_stack |
| Bluetooth headset stuttering | Disable Teams audio processing | check_teams_specific |
| Bluetooth mouse disconnecting | Update Bluetooth drivers | check_peripheral_usb |
Bluetooth Commands
# Check Bluetooth devices
Get-PnpDevice -Class Bluetooth | Select Name, Status
# Restart Bluetooth support service
Restart-Service bthserv
# Check Bluetooth version
Get-PnpDevice -Class Bluetooth | Get-PnpDeviceProperty -KeyName {e4d5c916-eeae-4c65-ba5e-1215025c0b60}4
Quick Diagnostics
Run All Audio/Video Checks
# Complete audio-video diagnostic script
Write-Host "=== Audio Devices ===" -ForegroundColor Cyan
Get-PnpDevice -Class AudioEndpoint | Select Name, Status, InstanceId
Write-Host "=== Display Adapters ===" -ForegroundColor Cyan
Get-PnpDevice -Class Display | Select Name, Status
Write-Host "=== Camera Devices ===" -ForegroundColor Cyan
Get-PnpDevice -Class Camera | Select Name, Status
Write-Host "=== Audio Services ===" -ForegroundColor Cyan
Get-Service Audiosrv, AudioEndpointBuilder, FrameServer
Write-Host "=== Bluetooth ===" -ForegroundColor Cyan
Get-PnpDevice -Class Bluetooth | Select Name, Status
When to Use Againly
Againly automatically diagnoses:
check_audio_stack- Full audio subsystem healthcheck_teams_specific- Teams audio/video issuescheck_display_topology- Monitor and camera configurationcheck_peripheral_usb- Bluetooth and USB device connectivity
Run comprehensive diagnosis:
- Multiple audio issues simultaneously
- Display detection problems
- Intermittent camera failures
- Bluetooth connectivity issues
Get Free Audio-Video Diagnosis →
Related Resources
Audio Deep Dives
Display Resources
External References
Last updated: April 23, 2026 This pillar page links to 25+ specialized troubleshooting guides. Bookmark for reference.
