Skip to content

Instantly share code, notes, and snippets.

@lboulard
Last active December 7, 2023 19:15
Show Gist options
  • Save lboulard/d6ec220c993776cacf4ac68091072524 to your computer and use it in GitHub Desktop.
Save lboulard/d6ec220c993776cacf4ac68091072524 to your computer and use it in GitHub Desktop.
Capslock to Control key #windows #ps1
$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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment