在新安装的 Windows 上按住 Shift 键会提示使用筛选键。
我想运行一个 PS 脚本来禁用此功能。
答案1
该功能已添加到用于配置 Windows 10 的大量 Windows 脚本中。该功能称为DisableAccessibilityKeys
https://github.com/Disassembler0/Win10-Initial-Setup-Script
具体代码:
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"