Microphone Volume Keeps Auto-Adjusting Windows 11 [2026 Fix]
Quick Answer: Windows 11 auto-adjusts your microphone through "Exclusive Mode" and app-level AGC (Automatic Gain Control). Disable "Allow applications to take exclusive control" in Sound settings and turn off microphone auto-adjustment in Teams/Zoom to lock your mic volume.
Symptoms
- Microphone volume slider moves by itself during calls
- Your voice sounds loud at first, then gets quieter
- Teams shows "Microphone is adjusting automatically"
- Recording volume changes when you switch between apps
- Mic volume resets to 50% or 100% after every reboot
Why This Happens (Root Cause)
Three different systems fight for control of your microphone:
-
Windows AGC (Automatic Gain Control): Built into the Windows Audio service, designed to prevent audio clipping by lowering volume when you speak loudly.
-
App-Level Ducking: Teams, Zoom, and Discord each have their own "automatically adjust microphone volume" settings that override Windows settings.
-
Exclusive Mode: When apps request exclusive control, they can change your mic volume without Windows knowing — leading to conflicts where two apps fight over the same setting.
The worst case: Teams enables AGC, Windows enables AGC, and your headset firmware has AGC — creating a feedback loop where your mic volume constantly drifts.
How to Diagnose (Manual)
Check 1: See Which Apps Have Exclusive Control
Get-Process | Where-Object {$_.ProcessName -match "Teams|Zoom|Discord|skype"} | Select-Object ProcessName, Id
Check 2: Check Windows Audio Service AGC Status
Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Audio" -Name "EnableCaptureMonitor" -ErrorAction SilentlyContinue
Value 1 = AGC is enabled system-wide. Value 0 or not found = AGC disabled.
Check 3: Inspect Microphone Properties via PowerShell
Get-PnpDevice -Class AudioEndpoint | Where-Object {$_.FriendlyName -like "*Microphone*"} | Get-PnpDeviceProperty -KeyName "{a45c254e-df1c-4efd-8020-67d146a850e0},2" | Select-Object Data
What you're looking for: Multiple apps showing "exclusive" access to the same microphone endpoint.
Step-by-Step Fix
Method 1: Disable Exclusive Mode (Recommended)
- Right-click the speaker icon in system tray → Sound settings
- Scroll down → More sound settings
- Go to Recording tab
- Right-click your microphone → Properties
- Go to Advanced tab
- Uncheck "Allow applications to take exclusive control of this device"
- Uncheck "Give exclusive mode applications priority"
- Click Apply → OK
Method 2: Disable Teams Auto-Adjustment
- Open Microsoft Teams
- Click ... (three dots) next to profile picture → Settings
- Go to Devices
- Scroll down to "Microphone"
- Uncheck "Automatically adjust microphone volume"
- Set your preferred volume level manually
- Click Confirm
Method 3: Disable Zoom Auto-Adjustment
- Open Zoom → Settings (gear icon)
- Go to Audio
- Uncheck "Automatically adjust microphone volume"
- Manually set input volume to your preferred level (typically 75-85%)
Method 4: Registry Fix to Disable System-Wide AGC
Create a .reg file:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Audio]
"EnableCaptureMonitor"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Audio\CaptureMonitor]
"EnableCaptureMonitor"=dword:00000000
Save as disable-mic-agc.reg and double-click to apply. Restart required.
Method 5: Disable Microphone Boost (Prevents Over-Adjustment)
- Sound settings → More sound settings → Recording
- Right-click microphone → Properties → Levels tab
- Set Microphone Boost to +0.0 dB or +10.0 dB (not higher)
- Set Microphone level to 75
- Click OK
How Againly Diagnoses This Automatically
Againly runs check_audio_stack in 0.3 seconds and detects:
- Apps with exclusive control locks on your microphone
- Conflicting AGC settings across Windows, Teams, Zoom, and Discord
- Microphone boost levels that trigger automatic ducking
- Multiple audio endpoints fighting for priority
Instead of guessing, it shows: "Found 3 apps with exclusive microphone control — Teams AGC conflicts with Windows AGC. Disabling exclusive mode and normalizing gain."
[CTA: Try free diagnosis]
Prevention
- Set mic volume once, then lock it — use the same level across all apps
- Don't install multiple conferencing apps with auto-adjust enabled simultaneously
- Use a hardware mixer (like GoXLR or Beacn) to bypass Windows audio entirely
- Keep Teams and Zoom updated — newer versions respect Windows audio settings better
FAQ
Q: Will disabling AGC make my microphone too quiet? A: No — it just stops automatic changes. You can still manually set your volume to any level.
Q: Why does my mic volume reset after every reboot? A: A driver or app is restoring "default" settings. Check your headset manufacturer's software (Logitech G HUB, Razer Synapse, etc.) for auto-adjust options.
Q: Does this affect recording quality? A: Disabling AGC actually improves quality — consistent volume is better than fluctuating gain during podcasts or streams.
Q: Why does Teams keep re-enabling auto-adjust? A: Teams updates sometimes reset device preferences. After major Teams updates, check your audio settings again.
Related: Complete Windows 11 Audio Fix Guide 2026 | Bluetooth Headset Mic Not Working Windows 11
