We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfacb9a commit 5420396Copy full SHA for 5420396
Initialize-Machine.ps1
@@ -614,6 +614,16 @@ Begin
614
}
615
616
617
+ function SetKeyboardProperties
618
+ {
619
+ # Some vendors configure keyboards with a slow delay and repeat rate. This customizes those
620
+ # values to be more responsive. Can be done manually via Keyboard Properties control panel
621
+ $0 = 'HKCU:\Control Panel\Keyboard'
622
+ Set-ItemProperty $0 -Name 'KeyboardDelay' -Value '1' -Force
623
+ Set-ItemProperty $0 -Name 'KeyboardSpeed' -Value '28' -Force
624
+ }
625
+
626
627
function CreateHeadlessPowerPlan()
628
{
629
[CmdletBinding(HelpURI='manualcmd')] param()
@@ -703,6 +713,7 @@ Process
703
713
704
714
SetTimeZone
705
715
SetExplorerProperties
716
+ SetKeyboardProperties
706
717
SetExtras
707
718
DisableHomeGroups
708
719
EnablePhotoViewer
0 commit comments