Created
April 19, 2023 20:16
-
-
Save suuhm/93f73062701c69459bf6ef92330056bd to your computer and use it in GitHub Desktop.
Changing the Windows - Systemlanguage smart way
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| cls | |
| :: echo change from eng (0409) to german -> 0407: | |
| :: (c) 2023 suuhmer | |
| :: | |
| echo Change Sys-Lang to %~1 - (Original: German 0407) | |
| echo\ | |
| Reg.Exe add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Nls\Language" /v Default /t REG_SZ /d %~1 /f | |
| echo\ | |
| echo Def done.. | |
| echo\ | |
| Reg.Exe add "HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Nls\Language" /v InstallLanguage /t REG_SZ /d %~1 /f | |
| echo\ | |
| echo Done success, now reboot please. | |
| echo\ | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment