Powershell 脚本是否可以禁用 Windows 10 中的辅助功能快捷方式?

Powershell 脚本是否可以禁用 Windows 10 中的辅助功能快捷方式?

在新安装的 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"

相关内容