Issue: disable sound scheme in Windows #10
This commit is contained in:
parent
c1511f8c5c
commit
4f2dafb79f
@ -183,6 +183,9 @@ echo.
|
||||
call disable-autologon.cmd
|
||||
echo.
|
||||
|
||||
powershell -command .\disable-soundscheme.ps1
|
||||
echo.
|
||||
|
||||
echo #####################
|
||||
echo ### CLEANUP tasks ###
|
||||
echo #####################
|
||||
|
15
scripts/disable-soundscheme.ps1
Normal file
15
scripts/disable-soundscheme.ps1
Normal file
@ -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),'#######'
|
||||
|
Loading…
Reference in New Issue
Block a user