Scripts for Japanese versioning of Windows 10

スポンサーリンク
スポンサーリンク

At first

Describes a script for Japanese version of Windows 10.

The script you are using is published as vm-configure on github, so please download it from github or download it from here.

See the link below for the vm-configure folder configuration.

You only need to download the Language pack manually.

For detailed instructions, please refer to the following URL:

/guest-share/windows10/os/configure-1.ps1

Powershell script for Japanese versioning of Windows 10.

To fully Japanese, you need to reboot and run configure-2.ps1 as well.

The location of the script file is in the current directory.

cd "$PSScriptRoot"

The language used by the user is set to Japanese.

Set-WinUserLanguageList -LanguageList ja-JP,en-US -Force

The language of the UI is set to Japanese.

Set-WinUILanguageOverride -Language ja-JP

Setting the culture to Japan.

Set-Culture ja-JP

/guest-share/windows10/os/configure-2.ps1

Powershell script for Japanese versioning of Windows 10.

Configure-1.ps1 must be running before running this script.

The location of the script file is in the current directory.

cd "$PSScriptRoot"

The place of use is set to Japan.

Set-WinHomeLocation -GeoId 0x7A

The time is set to Japan time.

Set-TimeZone -Id "Tokyo Standard Time"

The system locale is set to Japan.

Set-WinSystemLocale -SystemLocale ja-JP

Set the date and time format to be the same as the display language.

Set-WinCultureFromLanguageListOptOut -OptOut $False

Comment

スポンサーリンク