diff options
author | breadcat | 2020-06-16 17:24:33 +0100 |
---|---|---|
committer | breadcat | 2020-06-16 17:24:33 +0100 |
commit | 924f79b624772076e30590ab7d8a19d1a0c012ed (patch) | |
tree | 795560b55064f5754ddcf352d8b748e547b806b2 | |
parent | eb8f79b0f1e9dcf3486439072dc75bf29f2a04b8 (diff) | |
download | win10-prep-924f79b624772076e30590ab7d8a19d1a0c012ed.tar.gz win10-prep-924f79b624772076e30590ab7d8a19d1a0c012ed.tar.bz2 win10-prep-924f79b624772076e30590ab7d8a19d1a0c012ed.zip |
Enable numlock on boot
-rw-r--r-- | 3-registry.bat | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/3-registry.bat b/3-registry.bat index ceb90c9..7d9a885 100644 --- a/3-registry.bat +++ b/3-registry.bat @@ -162,3 +162,5 @@ reg delete "HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\ rem disable win10 game bar reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v "AppCaptureEnabled" /t REG_DWORD /d "0" /f reg add "HKEY_CURRENT_USER\System\GameConfigStore" /v "GameDVR_Enabled" /t REG_DWORD /d "0" /f +rem enable numlock on boot +reg add "HKCU\Control Panel\Keyboard" /v "InitialKeyboardIndicators" /t REG_SZ /d "2" /f
\ No newline at end of file |