win10-prep

Batch script to tweak Windows 10 to a more usable form
Log | Files | Refs

commit 924f79b624772076e30590ab7d8a19d1a0c012ed
parent eb8f79b0f1e9dcf3486439072dc75bf29f2a04b8
Author: breadcat <peter@minskio.co.uk>
Date:   Tue, 16 Jun 2020 17:24:33 +0100

Enable numlock on boot

Diffstat:
M3-registry.bat | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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