We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48346c4 commit 1175a85Copy full SHA for 1175a85
windows/map_caps_to_ctrl.ps1
@@ -0,0 +1,5 @@
1
+$hexified = "00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00".Split(',') | % { "0x$_"};
2
+
3
+$kbLayout = 'HKLM:\System\CurrentControlSet\Control\Keyboard Layout';
4
5
+New-ItemProperty -Path $kbLayout -Name "Scancode Map" -PropertyType Binary -Value ([byte[]]$hexified);
0 commit comments