This gist disables the Windows 11 Microsoft Voice Clarity / Voice Focus audio-processing component in a way that survives Settings refreshes, device rescans, and the driver being restaged.
It is meant for systems where the Windows Settings app keeps showing Audio enhancements -> Voice Clarity or Voice Focus -> Automatic for microphone input devices even after toggling audio enhancements off.
Disable-VoiceClarity-Reliable.ps1:
-
Self-elevates with a UAC prompt.
-
Adds a local Device Installation Restriction policy blocking this hardware ID:
SWC\VEN_MSFT&AUDIO_EFFECTPACK_VOICECLARITY -
Adds a retroactive block for the known Voice Clarity device instance:
SWD\DRIVERENUM\{96bedf2c-18cb-4a15-b821-5e95ed0fea61}#VocaEffectPack&1&6b31f1d&0 -
Removes the Voice Clarity software component device.
-
Deletes any published
voiceclarityep_audio_component.infpackage from the Windows DriverStore. -
Runs a device scan and deletes the package again if Windows restages it.
-
Writes a log and exported driver backup under
%TEMP%.
This can make the Voice Clarity option disappear from Windows Settings. That is expected: Windows is being told not to install that audio-processing component.
Download all files from this gist, keep the .cmd and .ps1 files in the same folder, then double-click:
Disable-VoiceClarity-Reliable.cmd
Or run from PowerShell:
powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\Disable-VoiceClarity-Reliable.ps1To remove the local block policy, double-click:
Undo-VoiceClarity-Block.cmd
Or run:
powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\Undo-VoiceClarity-Block.ps1After undoing, Windows may reinstall Voice Clarity on the next hardware scan, reboot, or driver update.
Run this in PowerShell:
pnputil /enum-devices /instanceid "SWD\DRIVERENUM\{96bedf2c-18cb-4a15-b821-5e95ed0fea61}#VocaEffectPack&1&6b31f1d&0" /properties /driversWhen blocked, you may see:
Problem Code: 28 (0x1C) [CM_PROB_FAILED_INSTALL]
The installation of this device is forbidden by system policy.
You can also check that Voice Clarity is not running as an Audio Processing Object:
pnputil /enum-drivers /class AudioProcessingObject /devices- This uses Windows-supported mechanisms: local Device Installation Restrictions plus
pnputil. - It does not disable your microphone or all audio effects. It targets the Microsoft Voice Clarity effect-pack component.
- You should still keep your normal audio driver packages, such as Realtek, SteelSeries Sonar, etc.
- Windows updates may try to stage the package again; the block policy is what keeps it from becoming active.