Files
winutil/docs/content/dev/tweaks/Customize-Preferences/NumLock.md
T

35 lines
1.1 KiB
Markdown
Raw Normal View History

2026-01-07 19:55:35 +00:00
# NumLock on Startup
```json
2026-01-14 20:28:45 +02:00
"WPFToggleNumLock": {
"Content": "NumLock on Startup",
"Description": "Toggle the Num Lock key state when your computer starts.",
"category": "Customize Preferences",
"panel": "2",
"Order": "a102_",
"Type": "Toggle",
"registry": [
{
"Path": "HKU:\\.Default\\Control Panel\\Keyboard",
"Name": "InitialKeyboardIndicators",
"Value": "2",
"OriginalValue": "0",
"DefaultState": "false",
"Type": "DWord"
},
{
"Path": "HKCU:\\Control Panel\\Keyboard",
"Name": "InitialKeyboardIndicators",
"Value": "2",
"OriginalValue": "0",
"DefaultState": "false",
"Type": "DWord"
}
],
2026-01-07 19:55:35 +00:00
```
2026-01-14 20:28:45 +02:00
## Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
2026-01-07 19:55:35 +00:00
2026-01-14 20:28:45 +02:00
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).