0

Holding Shift on a new Windows installation prompts use of Filter Keys.

I want to run a PowerShell script to disable this.

1 Answers1

4

This has been added as a feature to an extensive suite of Windows Scripts to configure Windows 10. The feature is called DisableAccessibilityKeys

https://github.com/Disassembler0/Win10-Initial-Setup-Script

The specific code:

Set-ItemProperty -Path "HKCU:\Control Panel\Accessibility\StickyKeys" -Name "Flags" -Type String -Value "506"
Set-ItemProperty -Path "HKCU:\Control Panel\Accessibility\ToggleKeys" -Name "Flags" -Type String -Value "58"
Set-ItemProperty -Path "HKCU:\Control Panel\Accessibility\Keyboard Response" -Name "Flags" -Type String -Value "122"