Skip to content

Instantly share code, notes, and snippets.

@burgil
Created April 21, 2024 22:42
Show Gist options
  • Save burgil/afc6eb2239bd699db72508e06e4d437c to your computer and use it in GitHub Desktop.
Save burgil/afc6eb2239bd699db72508e06e4d437c to your computer and use it in GitHub Desktop.
Turning off the annoying beep sound when using CHOICE in the command prompt (cmd) on Windows
@echo off
title Disabling Annoying Beep Sounds...
echo Disabling Annoying Beep Sounds...
net stop beep
echo Annoying Beep Sounds Disabled!
title Annoying Beep Sounds Disabled!
pause
@echo off
title Enabling Annoying Beep Sounds...
echo Enabling Annoying Beep Sounds...
net start beep
echo Annoying Beep Sounds Enabled!
title Annoying Beep Sounds Enabled!
pause
choice /c yn /n /m "Yes or No?"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment