Adding a language pack in Powershell 7: A guide

Copper Contributor

To enable Chinese (Traditional, Taiwan) language and keyboard pinyin input in Powershell, you can utilize the following steps:

 

1. Open Powershell with administrator privileges.

2. Run the following command to install the required language pack:

   ```powershell

   Add-WindowsCapability -Online -Name Language.Basic~~~zh-TW~0.0.1.0

   ```

3. Next, set the default input method to keyboard pinyin for Chinese (Traditional, Taiwan) language:

   ```powershell

   Set-WinUILanguageOverride -Language zh-TW

   Set-WinUserLanguageList -LanguageList zh-TW -force

   ```

4. Restart your computer to apply the changes.

5. Once your system restarts, you should be able to switch to Chinese (Traditional, Taiwan) language and use the keyboard pinyin input method in Powershell or any other application.

 

By following these steps, you can easily add Chinese (Traditional, Taiwan) language support with keyboard pinyin input in Powershell.

0 Replies