Windows 10: Microphone Detected Apps Won't Record
If you're using Windows 10 Pro version 22H2 and have an earphones and microphone combination connected via USB, you may have encountered an issue where the microphone input device is detected in the settings, but apps still won't record audio.
Checking the Microphone Settings
To confirm that the microphone is detected in Windows 10, follow these steps:
- Go to Settings > Sound > Input.
- Check if the microphone input device is listed.
If the microphone is detected, but apps still won't record audio, there may be an issue with the microphone's permissions or settings.
Checking the Microphone Permissions
To check the microphone's permissions, follow these steps:
- Go to Settings > Privacy > Microphone.
- Check if the "Allow apps to access your microphone" option is turned on.
- Scroll down to the list of apps and check if the apps that you want to use with the microphone have access to it.
If the microphone's permissions are correct, but apps still won't record audio, try the following solutions.
Solution 1: Restart the Windows Audio Service
Restarting the Windows Audio Service can resolve issues with the microphone not being recognized by apps.
- Press the Windows key + R to open the Run dialog box.
- Type "services.msc" and press Enter.
- Find the "Windows Audio" service and right-click on it.
- Select "Restart" from the context menu.
Solution 2: Update the Audio Drivers
Outdated audio drivers can also cause issues with the microphone not being recognized by apps. To update the audio drivers, follow these steps:
- Press the Windows key + X and select "Device Manager" from the menu.
- Expand the "Sound, video and game controllers" category.
- Right-click on the audio device and select "Update driver" from the context menu.
- Select "Search automatically for updated driver software" and follow the prompts to install the update.
Solution 3: Change the Default Recording Device
Changing the default recording device can also resolve issues with the microphone not being recognized by apps.
- Right-click on the speaker icon in the taskbar and select "Recording Devices" from the menu.
- Right-click on the microphone input device and select "Set as Default Device" from the context menu.
If you're using Windows 10 Pro version 22H2 and have an earphones and microphone combination connected via USB, and apps still won't record audio even though the microphone input device is detected in the settings, it may be caused by issues with the microphone's permissions or settings, outdated audio drivers, or the default recording device. By following the solutions provided in this article, you can resolve these issues and start recording audio with your microphone again.
References
- How to Fix Microphone Not Working in Windows 10
- Microphone Not Working in Windows 10? Here's How to Fix It
- How to fix microphone problems in Windows 10
// Restart the Windows Audio Service
Get-Service -Name "Windows Audio" | Restart-Service
// Update the Audio Drivers
Get-PnpDevice -Class "Sound, video and game controllers" | Update-PnpDevice
// Change the Default Recording Device
$mic = Get-PnpDevice -Class "Audio" -FriendlyName "Microphone"
$mic | Set-PnpDeviceDefaultAudioEndpoint -AudioEndpointRole "Multimedia"