NUMLock immer an

Num-Lock Taste immer an

NUMLock Taste einschalten

Mit Hilfe der Powershell lässt sich der verantwortliche Registry-Wert so einstellen, das die NUMLock Taste auch immer nach einem Neustart (systemweit) aktiv ist.

Powershell anzeigen

# Num-Lock Einstellungen prüfen
Get-ItemProperty -Path “Microsoft.PowerShell.Core\Registry::HKU\.DEFAULT\Control Panel\Keyboard” -Name InitialKeyboardIndicators
Get-ItemProperty -Path “Microsoft.PowerShell.Core\Registry::HKCU\Control Panel\Keyboard” -Name InitialKeyboardIndicators

# Num-Lock auf eingeschaltet setzen = Wert 2
Set-ItemProperty -Path “Microsoft.PowerShell.Core\Registry::HKU\.DEFAULT\Control Panel\Keyboard” -Name InitialKeyboardIndicators -Value 2
Set-ItemProperty -Path “Microsoft.PowerShell.Core\Registry::HKCU\Control Panel\Keyboard” -Name InitialKeyboardIndicators -Value 2