From b0ec94f7892896c04386f4ffd565d00108ac9e04 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 21 Aug 2023 20:23:59 +0900 Subject: [PATCH] Add script to disable Windows Beeps Resolves #279 ref: https://github.com/kachick/times_kachick/issues/214 ref: 3f1efdb5868535f0a57058c280b12ebe09ce0309 --- windows/disable_beeps.ps1 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 windows/disable_beeps.ps1 diff --git a/windows/disable_beeps.ps1 b/windows/disable_beeps.ps1 new file mode 100644 index 00000000..d36515da --- /dev/null +++ b/windows/disable_beeps.ps1 @@ -0,0 +1,3 @@ +# https://github.com/kachick/times_kachick/issues/214 +reg add "HKCU\Control Panel\Sound" /v Beep /t REG_SZ /d "no" /f +Write-Output 'Completed, you need to restart Windows'