Skip to content

Instantly share code, notes, and snippets.

@WillianTomaz
Created March 23, 2024 11:35
Show Gist options
  • Save WillianTomaz/5c99213304e7bf9c1b7cd15e1659e4da to your computer and use it in GitHub Desktop.
Save WillianTomaz/5c99213304e7bf9c1b7cd15e1659e4da to your computer and use it in GitHub Desktop.
Switch the language of Windows 11 (single language) to en-us

Saturday, March 23, 2024

How to change the language of Windows 11 (single language) to EN-US

"For those seeking to switch to en-us, i've been able to do it without downloading anything, as it seems pre-installed." - seeker_of_bacon

  • Was used:

    • Windows 11 (x64)
    • Windows PowerShell (Admin mode)



In your PowerShell(Admin mode):

  1. Run the command to change the language
      reg add HKLM\SYSTEM\CurrentControlSet\Control\Nls\Language /v InstallLanguage /t REG_SZ /d 0409 /f
      reg add HKLM\SYSTEM\CurrentControlSet\Control\Nls\Language /v Default /t REG_SZ /d 1033 /f
  2. Restart your computer
  3. That's it, it's done!


References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment