From 4f2dafb79fb80112a0afad71e3833866574cbede Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Thu, 5 Aug 2021 14:17:08 +0200 Subject: [PATCH] Issue: disable sound scheme in Windows #10 --- scripts/autoconfig-all.cmd | 3 +++ scripts/disable-soundscheme.ps1 | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 scripts/disable-soundscheme.ps1 diff --git a/scripts/autoconfig-all.cmd b/scripts/autoconfig-all.cmd index 567e3a3..e921ceb 100644 --- a/scripts/autoconfig-all.cmd +++ b/scripts/autoconfig-all.cmd @@ -183,6 +183,9 @@ echo. call disable-autologon.cmd echo. +powershell -command .\disable-soundscheme.ps1 +echo. + echo ##################### echo ### CLEANUP tasks ### echo ##################### diff --git a/scripts/disable-soundscheme.ps1 b/scripts/disable-soundscheme.ps1 new file mode 100644 index 0000000..e28c572 --- /dev/null +++ b/scripts/disable-soundscheme.ps1 @@ -0,0 +1,15 @@ +# disable FUCKING windows bell in cmd.exe ... + +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' +Write-Host "Disabling all windows sounds ..." -foregroundcolor red + +New-ItemProperty -Path HKCU:\AppEvents\Schemes -Name "(Default)" -Value ".None" -Force | Out-Null + +Get-ChildItem -Path "HKCU:\AppEvents\Schemes\Apps" | + Get-ChildItem | Get-ChildItem | + Where-Object {$_.PSChildName -eq ".Current"} | + Set-ItemProperty -Name "(Default)" -Value "" + +Write-Host "READY. Sound scheme was set to NONE." -foregroundcolor green +write-host '#######',(split-path $PSCommandPath -Leaf),'#######' +