Home » How To » How To Mute or Unmute Microphone in Windows 11

How To Mute or Unmute Microphone in Windows 11

Wondering how to quickly mute or unmute your microphone or mic in Windows 11? Here are four easy methods to do so.

If you are using a microphone to chat with your friends, colleagues, or family members, there might be times when you want to quickly mute it. For example, maybe you are talking to someone nearby, to reduce environmental or background noise, preserve meeting etiquette, or simply for privacy reasons. Of course, after muting a mic, you will also need to unmute it to talk.

Both of these tasks are pretty easy in Windows 11. In this quick and easy guide, I will show you four easy methods to mute and unmute the microphone in Windows 11. Let’s get started.

Mute and Unmute Microphone Using a Dedicated Key on your Keyboard

On most keyboards (including laptops), there will be a dedicated microphone mute/unmute key. For example, on my keyboard, the F8 is that key. That means pressing it instantly mutes or unmutes the microphone.

Important note: Depending on your laptop or keyboard settings, you might have to press and hold the Fn key when pressing the microphone mute and unmute keys.

toggle mic key on keyboard

Keyboard Shortcut to Mute and Unmute Microphone

Windows 11 also has a dedicated keyboard shortcut to mute and unmute the mic. All you have to do is press the “Windows key + Alt + K” shortcut.

Important note: Do keep in mind that this shortcut doesn’t work on all applications. If Windows doesn’t find a supported application, you will see the “No supported app in use for mic mute” message at the bottom of the screen.

Control Microphone Using Game Bar (for when playing games)

If you are specifically looking to control your microphone’s mute or unmute status, you can do it using the Game Bar. Here’s how:

First, open the Game Bar by pressing “Windows key + G“. You can also open it by searching “Game Bar” in the Start menu.

Once it opens, click the “Mic off” button in the Audio widget to mute the mic. To unmute the mic, click the “Mic on” button in the same widget.

Important note: If you cannot find the Audio widget or have dismissed it, you can show it again by clicking the “Widgets menu” icon (3×3 grid of dots) in the top bar, then selecting the “Audio” option.

Custom Keyboard Shortcut to Mute and Unmute Microphone

If the default Windows 11 keyboard shortcut to mute/unmute the mic is not working, you can create a custom keyboard shortcut to toggle the mic. We can do it using AutoHotkey, a free and open source Windows automation tool. Here’s how:

First, go to the official AutoHotkey website, download the application, and install it. Once installed, follow the steps below.

Open the Start menu by pressing the “Windows key” keyboard shortcut. Next, search for “Notepad” and click the “Open” option to launch the Notepad app.

open notepad

Next, copy the following script code and paste it into Notepad. After that, press the “Ctrl + S” keyboard shortcut.

#Requires AutoHotkey v2.0
#SingleInstance Force

^!M:: {
  try {
      SoundSetMute(-1, , "Microphone")
      ToolTip(SoundGetMute(, "Microphone") ? "Mic muted" : "Mic on")
      SetTimer(() => ToolTip(), -1000)
  } catch as e {
      MsgBox("Couldn't toggle mic: " e.Message, "Mic Toggle", "IconX")
  }
}

Go to a folder where you want to save the script file, type “toggle-mic.ahk” in the “File name” field, select “All files” from the “File type” dropdown menu, and click “OK“.

save script to toggle mic

After saving the script file, open the File Explorer, navigate to the saved folder, and double-click the AHK file. This action launches the script, and it runs in the background. You can see its icon on the taskbar’s system tray.

As long as the script is running, press “Ctrl + Alt + M” to mute or unmute the microphone.

Script Customization & Troubleshooting (Optional)

By default, the script uses “Ctrl(^) + Alt(!) + M” to toggle the microphone. If you want, you can change the shortcut by modifying “^!M”. For example, if you want to use “Windows key + Alt + M”, you can change it to “+!M”. Here’s the official key list you can use with AutoHotkey.

If you have more than one microphone and want to target a specific one, replace “Microphone” in the script code with a more distinctive part of that device’s name (like “Realtek” or “USB”). To get the name, open Settings by pressing “Windows key + I”, go to “System” > “Sound”, click “More sound settings”, then navigate to the “Recording” tab. Here, find the microphone you want to mute, identify its unique name, and use that in the script code.

That is all. It is that simple to mute and unmute the microphone in Windows 11. If you have any questions or need help, comment below. I’ll be happy to assist.

Leave a Comment

Your email address will not be published. Required fields are marked *