我已在 Windows 10 中Caps Lock应用了以下答案图(Ctrlhttps://superuser.com/a/997448/723632)。现在如果可能的话,我想将其还原:
如果有人需要通过以下方式完成此操作
PowerShell
:
$hexified = "00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00".Split(',') | % { "0x$_"};
$kbLayout = 'HKLM:\System\CurrentControlSet\Control\Keyboard Layout';
New-ItemProperty -Path $kbLayout -Name "Scancode Map" -PropertyType Binary -Value ([byte[]]$hexified);
以管理员身份运行它并重新启动。
我怎样才能恢复这个我想用作Caps Lock其默认映射的操作?
答案1
做这个 :
- 使用
regedit
并 定位 键HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Keyboard Layout
。 - 右键单击该项目
Scancode Map
并选择删除 - 重启。