How to Change Language of Windows 10 Single Language Without Format
Okay this is how I handle this situation. First you should setup the language pack of the desired language to use.
-
If you haven't done already, download your desired language pack. This usually can be done from Windows 10 Settings > Time & Language > Language tab and then clicking on Add language.
-
Check the language packs on your computer to confirm it was installed. Press
Win+R
and typecmd
, then pressCtrl+Shift+Enter
to open Command Prompt with Administrator rights. -
Type
dism /online /get-packages
and pressEnter
.
We are looking for Microsoft-Windows-Client-LanguagePack-Package as a start for Package Identity. And its State should be Installed Check screenshot
You can see next 5 characters after ~ for understand which language it is. In this example, we are seeing tr-TR. If you are looking for English for example, you should look for en-US. -
If you found the desired language in the step above, skip this step. Otherwise, continue reading. You will have to manually download and install the language pack you want. To do that, go to this link for Windows 10 1909 (UPDATE: Go to this link for Windows 10 2004). Then select language pack you want to download. Then go to Command Prompt (Admin rights) again and type
Dism /online /Add-Package /PackagePath:C:\lp.cab
. Don't forget to changePackagePath
to your downloaded .cab file's path before you type! Then pressEnter
to install downloaded language pack -
Press
Win+R
and typeregedit
, then pressCtrl+Shift+Enter
to open Regedit with Administrator rights. Then go to\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Language
Default entry shows that language id of your system. Check this link to look your desired language id from list. Copy the part after 0x part. For example for en-US, get 0409 Check screenshot -
Double click to Default (In some cases you might need to change InstallLanguage's id as well) to edit this entry and paste the language id you copied. Save and restart your computer.
While the accepted answer can work, it's also possible that the .cab file listed in those links doesn't work for your version of Win10. If that happens, you can find the language pack for your version by:
- Visiting https://uupdump.ml/
- Searching for keywords of your Win10 build. For example, System Information showed my Win10 was at version 10.0.18363, build 18363, so I entered "18363 amd64"
- Clicking on a Cumulative update of your build in the search results
- In Search files, search for "languagepack"
- Downloading the .esd file of the language pack you wish to use
- Converting the .esd file into a .cab file. You can use this tool for example https://github.com/abbodi1406/WHD/blob/master/scripts/ESD2CAB-CAB2ESD.zip . It has a readme explaining how to use it
- Then following steps 4, 5 and 6 of the accepted answer
It might be a bit longer, but it's what I ended up doing since the .cab files listed there were not compatible with my build